IListCollectionNavigator.cs 533 B

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