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
parent
commit
ecb263a4da
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/Avalonia.Controls/Generators/ItemContainerInfo.cs

4
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; }
} }
} }

Loading…
Cancel
Save