补充Static控件定义

This commit is contained in:
gb 2023-06-17 16:54:46 +08:00
parent e23b1b6890
commit aeaa0bf9f4
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@
#define IS_BUTTON(cls) IS_STR_EQUAL(cls, WC_BUTTONW)
#define IS_TRACKBAR(cls) IS_STR_EQUAL(cls, TRACKBAR_CLASSW)
#define IS_UPDOWN_ARROW(cls) IS_STR_EQUAL(cls, UPDOWN_CLASSW)
#define IS_STATIC_TEXT(cls) IS_STR_EQUAL(cls, L"Static")
#define RECT_W(r) (r.right - r.left)
#define RECT_H(r) (r.bottom - r.top)