AutoCompleteSource.cs 328 B

123456789101112131415
  1. namespace System.Windows.Forms
  2. {
  3. public enum AutoCompleteSource
  4. {
  5. FileSystem = 1,
  6. HistoryList = 2,
  7. RecentlyUsedList = 4,
  8. AllUrl = 6,
  9. AllSystemSources = 7,
  10. FileSystemDirectories = 0x20,
  11. CustomSource = 0x40,
  12. None = 0x80,
  13. ListItems = 0x100
  14. }
  15. }