Browse Source
Merge pull request #5112 from AvaloniaUI/api/itemcontainerinfo-index-setter
Make ItemContainerInfo.Index setter public.
pull/5113/head
Dariusz Komosiński
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/Avalonia.Controls/Generators/ItemContainerInfo.cs
|
|
@ -37,6 +37,6 @@ namespace Avalonia.Controls.Generators |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// Gets the index of the item in the <see cref="ItemsControl.Items"/> collection.
|
|
|
/// Gets the index of the item in the <see cref="ItemsControl.Items"/> collection.
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public int Index { get; internal set; } |
|
|
public int Index { get; set; } |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|