12345678910111213141516171819 |
- using System;
- namespace LYFZ.OtherExpansion.Win32.Const
- {
- public static class ICC
- {
- public const int ICC_LISTVIEW_CLASSES = 1;
- public const int ICC_TREEVIEW_CLASSES = 2;
- public const int ICC_BAR_CLASSES = 4;
- public const int ICC_TAB_CLASSES = 8;
- public const int ICC_UPDOWN_CLASS = 16;
- public const int ICC_PROGRESS_CLASS = 32;
- public const int ICC_HOTKEY_CLASS = 64;
- public const int ICC_ANIMATE_CLASS = 128;
- public const int ICC_WIN95_CLASSES = 255;
- public const int ICC_DATE_CLASSES = 256;
- public const int ICC_USEREX_CLASSES = 512;
- public const int ICC_COOL_CLASSES = 1024;
- }
- }
|