ICC.cs 609 B

12345678910111213141516171819
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public static class ICC
  5. {
  6. public const int ICC_LISTVIEW_CLASSES = 1;
  7. public const int ICC_TREEVIEW_CLASSES = 2;
  8. public const int ICC_BAR_CLASSES = 4;
  9. public const int ICC_TAB_CLASSES = 8;
  10. public const int ICC_UPDOWN_CLASS = 16;
  11. public const int ICC_PROGRESS_CLASS = 32;
  12. public const int ICC_HOTKEY_CLASS = 64;
  13. public const int ICC_ANIMATE_CLASS = 128;
  14. public const int ICC_WIN95_CLASSES = 255;
  15. public const int ICC_DATE_CLASSES = 256;
  16. public const int ICC_USEREX_CLASSES = 512;
  17. public const int ICC_COOL_CLASSES = 1024;
  18. }
  19. }