Browse Source

Make ItemContainerInfo.Index setter public.

It's needed to implement custom `ItemContainerGenerator`s.
pull/5112/head
Steven Kirk 6 years ago
parent
commit
aa8e0651ee
  1. 4
      src/Avalonia.Controls/Generators/ItemContainerInfo.cs

4
src/Avalonia.Controls/Generators/ItemContainerInfo.cs

@ -37,6 +37,6 @@ namespace Avalonia.Controls.Generators
/// <summary>
/// Gets the index of the item in the <see cref="ItemsControl.Items"/> collection.
/// </summary>
public int Index { get; internal set; }
public int Index { get; set; }
}
}
}

Loading…
Cancel
Save