IListCollectionNavigator.cs 519 B

1234567891011121314
  1. #nullable disable
  2. using System.Collections;
  3. namespace Terminal.Gui.Views;
  4. /// <summary>
  5. /// <see cref="ICollectionNavigator"/> sub-interface for <see cref="ListView"/> and <see cref="TreeView"/>. See also
  6. /// <see cref="ListView"/> / <see cref="TreeView"/>
  7. /// </summary>
  8. public interface IListCollectionNavigator : ICollectionNavigator
  9. {
  10. /// <summary>The collection of objects to search. <see cref="object.ToString()"/> is used to search the collection.</summary>
  11. IList Collection { get; set; }
  12. }