FileDialogIconGetterContext.cs 400 B

123456789101112131415161718
  1. namespace Terminal.Gui {
  2. /// <summary>
  3. /// Describes the context in which icons are being sought
  4. /// during <see cref="FileDialogIconGetterArgs"/>.
  5. /// </summary>
  6. public enum FileDialogIconGetterContext {
  7. /// <summary>
  8. /// Icon will be used in the tree view
  9. /// </summary>
  10. Tree,
  11. /// <summary>
  12. /// Icon will be used in the main table area of the dialog
  13. /// </summary>
  14. Table
  15. }
  16. }