亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? control.h

?? 44b0處理器+UCOS操作系統(tǒng)+miniGUI源代碼
?? H
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
 * Creates a button that is the same as a radio button,  * except that when the user selects it, The system automatically  * sets the button's check state to checked * and automatically sets the check state for all other buttons  * in the same group to unchecked. */#define BS_AUTORADIOBUTTON  0x00000009L/** * \def BS_OWNERDRAW * \brief Creates an owner-drawn button. * * \note Not implemented so far. */#define BS_OWNERDRAW        0x0000000BL#define BS_TYPEMASK         0x0000000FL/** * \def BS_TEXT * \brief Specifies that the button displays text. */#define BS_TEXT             0x00000000L/** * \def BS_LEFTTEXT * \brief Places text on the left side. * * Places text on the left side of the radio button  * or check box when combined with a radio button or check box style. */#define BS_LEFTTEXT         0x00000020L/** * \def BS_ICON * \brief Specifies that the button displays an icon. */#define BS_ICON             0x00000040L/** * \def BS_BITMAP * \brief Specifies that the button displays a bitmap. */#define BS_BITMAP           0x00000080L#define BS_CONTENTMASK      0x000000F0L/** * \def BS_LEFT * \brief Left-justifies the text in the button rectangle. * * However, if the button is a check box or radio button that  * does not have the BS_RIGHTBUTTON style, the text is left  * justified on the right side of the check box or radio button. */#define BS_LEFT             0x00000100L/** * \def BS_RIGHT * \brief Right-justifies text in the button rectangle. *  * However, if the button is a check box or radio button that  * does not have the BS_RIGHTBUTTON style, the text is  * right justified on the right side of the check box or radio button. */#define BS_RIGHT            0x00000200L/** * \def BS_CENTER * \brief Centers text horizontally in the button rectangle. */#define BS_CENTER           0x00000300L/** * \def BS_TOP * \brief Places text at the top of the button rectangle. */#define BS_TOP              0x00000400L/** * \def BS_BOTTOM * \brief Places text at the bottom of the button rectangle. */#define BS_BOTTOM           0x00000800L/** * \def BS_VCENTER * \brief Places text in the middle (vertically) of the button rectangle. */#define BS_VCENTER          0x00000C00L/** * \def BS_REALSIZEIMAGE * \brief Does not scale the image. */#define BS_REALSIZEIMAGE    0x00000F00L#define BS_ALIGNMASK        0x00000F00L/** * \def BS_PUSHLIKE * \brief Makes a button look and act like a push button. * * Makes a button (such as a check box, three-state check box, or radio button)  * look and act like a push button. The button looks raised when it isn't  * pushed or checked, and sunken when it is pushed or checked. */#define BS_PUSHLIKE         0x00001000L/** * \def BS_MULTLINE * \brief Wraps the button text to multiple lines. * * Wraps the button text to multiple lines if the text string is  * too long to fit on a single line in the button rectangle. */#define BS_MULTLINE         0x00002000L/** * \def BS_NOTIFY * \brief Enables a button to send notification messages to its parent window. */#define BS_NOTIFY           0x00004000L/** * \def BS_CHECKED * \brief Makes a button checked initially. */#define BS_CHECKED          0x00004000L#define BS_FLAT             0x00008000L#define BS_NOBORDER            0x00010000L#define BS_RIGHTBUTTON      BS_LEFTTEXT    /** @} end of ctrl_button_styles */    /**     * \defgroup ctrl_button_states States of button control     * @{     *//** * \def BST_UNCHECKED * \brief Indicates the button is unchecked. */#define BST_UNCHECKED       0x0000/** * \def BST_CHECKED * \brief Indicates the button is checked. */#define BST_CHECKED         0x0001/** * \def BST_INDETERMINATE * \brief Indicates the button is grayed because  * the state of the button is indeterminate. */#define BST_INDETERMINATE   0x0002/** * \def BST_PUSHED * \brief Specifies the highlight state. */#define BST_PUSHED          0x0004/** * \def BST_FOCUS * \brief Specifies the focus state. */#define BST_FOCUS           0x0008    /** @} end of ctrl_button_states */    /**     * \defgroup ctrl_button_msgs Messages of button control     * @{     *//** * \def BM_GETCHECK * \brief Retrieves the check state of a radio button or check box. * * An application sends a BM_GETCHECK message to retrieve  * the check state of a radio button or check box. * * \code * BM_GETCHECK * wParam = 0; * lParam = 0; * \endcode * * \return An integer indicates whether the button is checked. * * \retval BST_UNCHECKED The button is not checked. * \retval BST_CHECKED The button is checked. * \retval BST_INDETERMINATE The button is grayed because the state of the button is indeterminate. * * \sa ctrl_button_states */#define BM_GETCHECK             0xF0F0/** * \def BM_SETCHECK * \brief Sets the check state of a radio button or check box. * * An application sends a BM_SETCHECK message to set  * the check state of a radio button or check box. * * \code * BM_SETCHECK * int check_state; * * wParam = (WPARAM)check_state; * lParam = 0; * \endcode * * \param check_state The check state of button, can be one of the following values: *      - BST_UNCHECKED\n *        Want the button to be unchecked. *      - BST_CHECKED\n *        Want the button to be checked. *      - BST_INDETERMINATE\n *        Want the button to be grayed if it is a three states button. * \return The old button state. */#define BM_SETCHECK             0xF0F1/** * \def BM_GETSTATE * \brief Gets the state of a button or check box. * * An application sends a BM_GETSTATE message to  * determine the state of a button or check box. * * \code * BM_GETSTATE * wParam = 0; * lParam = 0; * \endcode * * \return An integer indicates the button state. * * \sa ctrl_button_states */#define BM_GETSTATE             0xF0F2/** * \def BM_SETSTATE * \brief Sets the state of a button. * * An application sends a BM_GETSTATE message to set the state of a  * button. * * \code * BM_SETSTATE * int push_state; * * wParam = (WPARAM)push_state; * lParam = 0; * \endcode * * \param push_state The push state of a button, can be one of the following values: *      - Zero\n *        Want the button to be unpushed. *      - Non zero\n *        Want the button to be pushed. * * \return The old button state. */#define BM_SETSTATE             0xF0F3/** * \def BM_SETSTYLE * \brief Changes the style of a button. * * An application sends a BM_SETSTYLE message to change the style of a button. * * \code * BM_SETSTYLE * int button_style; * * wParam = (WPARAM)button_style; * lParam = 0; * \endcode * * \param button_style The styles of a button. * * \return Always be zero. * * \sa ctrl_button_styles */#define BM_SETSTYLE             0xF0F4/** * \def BM_CLICK * \brief Simulates the user clicking a button. * * An application sends a BM_CLICK message to simulate the user clicking a button. * * \code * BM_CLICK * * wParam = 0; * lParam = 0; * \endcode */#define BM_CLICK                0xF0F5/** * \def BM_GETIMAGE * \brief Retrieves the handle to the image. * * An application sends a BM_GETIMAGE message to  * retrieve a handle to the image (icon or bitmap) associated with the button. * * \code * BM_GETIMAGE * int image_type; * * wParam = (WPARAM)&image_type; * lParam = 0; * \endcode * * \param image_type The type of a button image will be returned through this buferr. *        It can be one of the following values: *      - BM_IMAGE_BITMAP\n *        Bitmap of a button. *      - BM_IMAGE_ICON\n *        Icon of a button. * * \return A handle of the bitmap or icon of the button, zero when error. */#define BM_GETIMAGE             0xF0F6#define BM_IMAGE_BITMAP         1#define BM_IMAGE_ICON           2    /** * \def BM_SETIMAGE * \brief Associates a new image (icon or bitmap) with the button. * * An application sends a BM_SETIMAGE message to  * associate a new image (icon or bitmap) with the button. * * Please use BM_IMAGE_BITMAP or BM_IMAGE_ICON as the first parameter of the message  * to indicate the type of button control image: *  - BM_IMAGE_BITMAP\n *          Specifies the type of image to associate with the button to be a bitmap. *  - BM_IMAGE_ICON\n *          Specifies the type of image to associate with the button to be an icon. */#define BM_SETIMAGE             0xF0F7#define BM_MSGMAX               0xF100    /** @} end of ctrl_button_msgs */        /**     * \defgroup ctrl_button_ncs Notification codes of button control     * @{     *//** * \def BN_CLICKED * \brief The BN_CLICKED notification message is sent when the user clicks a button. */#define BN_CLICKED          0#define BN_PAINT            1   /* not supported */#define BN_HILITE           2#define BN_UNHILITE         3#define BN_DISABLE          4   /* not supported */#define BN_DOUBLECLICKED    5/** * \def BN_PUSHED * \brief The BN_PUSHED notification message is sent when the user pushes a button. */#define BN_PUSHED           BN_HILITE/** * \def BN_UNPUSHED * \brief The BN_UNPUSHED notification message is sent when the user unpushes a button. */#define BN_UNPUSHED         BN_UNHILITE/** * \def BN_DBLCLK * \brief The BN_DBLCLK notification message is sent when the user double-clicks a button. */#define BN_DBLCLK           BN_DOUBLECLICKED/** * \def BN_SETFOCUS * \brief The BN_SETFOCUS notification message is sent when a button receives the keyboard focus. */#define BN_SETFOCUS         6/** * \def BN_KILLFOCUS * \brief The BN_KILLFOCUS notification message is sent when a button loses the keyboard focus. */#define BN_KILLFOCUS        7    /** @} end of ctrl_button_ncs */    /** @} end of ctrl_button */#endif /* _CTRL_BUTTON *//****** Edit and MEdit Control ***********************************************/#if defined (_CTRL_SIMEDIT) || defined(_CTRL_SLEDIT) || defined(_CTRL_MLEDIT)    /**     * \defgroup ctrl_edit Edit/MEdit control     *     * \bug You can not pass caption argument for multi-line edit control     *      when you create it, just use null string:     *     * \code     *  CreateWindowEx (CTRL_MEDIT, ..., "", ...);     * \endcode     *     * @{     *//** * \def CTRL_EDIT * \brief The class name of simple single-line editor box. * * This edit control uses the system default fixed logical font. */#define CTRL_EDIT           ("edit")/** * \def CTRL_SLEDIT * \brief The class name of single-line editor box. * * This edit control uses the system logical font for control, * which may be variable-width font.. */#define CTRL_SLEDIT         ("sledit")/** * \def CTRL_MLEDIT * \brief The class name of multiple-line editor box. * * This edit control uses the system logical font for control, * which may be variable-width font.. */#define CTRL_MLEDIT         ("mledit")/** * \def CTRL_MEDIT * \brief Another class name of multiple-line editor box. * * This edit control uses the system logical font for control, * which may be variable-width font.. */#define CTRL_MEDIT          ("medit")    /**     * \defgroup ctrl_edit_styles Styles of edit control     * @{     *//** * \def ES_LEFT * \brief Left-aligns text. */#define ES_LEFT             0x00000000L#define ES_CENTER           0x00000001L#define ES_RIGHT            0x00000002L#define ES_MULTILINE        0x00000004L/** * \def ES_UPPERCASE * \brief Converts all characters to uppercase as they are typed into the edit control. */#define ES_UPPERCASE        0x00000008L/** * \def ES_LOWERCASE * \brief Converts all characters to lowercase as they are typed into the edit control. */#define ES_LOWERCASE        0x00000010L/** * \def ES_PASSWORD * \brief Displays an asterisk (*) for each character typed into the edit control. */#define ES_PASSWORD         0x00000020L#define ES_AUTOVSCROLL      0x00000040L#define ES_AUTOHSCROLL      0x00000080L#define ES_NOHIDESEL        0x00000100L#define ES_OEMCONVERT       0x00000400L/** * \def ES_READONLY * \brief Prevents the user from typing or editing text in the edit control. */#define ES_READONLY         0x00000800L/** * \def ES_BASELINE * \brief Draws base line under input area instead of frame border. */#define ES_BASELINE         0x00001000L/** * \def ES_AUTOWRAP

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中国色在线观看另类| 亚洲美女视频一区| 欧美三级日韩三级| 国产不卡视频在线播放| 日韩综合小视频| 亚洲激情成人在线| 国产女人aaa级久久久级 | 欧美理论电影在线| 成人性生交大片| 国产乱码字幕精品高清av| 首页综合国产亚洲丝袜| 亚洲九九爱视频| 中文无字幕一区二区三区| 日韩女优电影在线观看| 欧美肥妇bbw| 在线视频欧美区| 99精品视频在线观看| 国产成人免费视频网站高清观看视频 | 亚洲三级在线观看| 日本一区免费视频| 精品国产伦一区二区三区免费 | 99久久精品免费看国产免费软件| 久久不见久久见免费视频7| 偷拍日韩校园综合在线| 亚洲一区二区偷拍精品| 亚洲视频在线一区| ●精品国产综合乱码久久久久| 久久久www成人免费毛片麻豆| 日韩欧美的一区| 日韩亚洲欧美综合| 制服丝袜中文字幕亚洲| 欧美喷水一区二区| 欧美性生活久久| 欧美性高清videossexo| 色美美综合视频| 在线亚洲一区二区| 色狠狠色狠狠综合| 欧美日韩中字一区| 欧美日韩不卡视频| 91精品国产色综合久久久蜜香臀| 欧美日韩高清影院| 91精品国产色综合久久不卡电影 | 一本色道久久综合亚洲aⅴ蜜桃| 国产精品18久久久久久久久久久久 | 日韩综合一区二区| 日韩av二区在线播放| 男女性色大片免费观看一区二区| 麻豆中文一区二区| 国产米奇在线777精品观看| 成人免费高清视频在线观看| av网站免费线看精品| 色哟哟国产精品免费观看| 欧美在线观看18| 欧美丰满嫩嫩电影| 精品成人私密视频| 国产精品久久久久影院亚瑟| 日韩伦理电影网| 丝袜亚洲另类丝袜在线| 黄色日韩三级电影| 高清不卡一区二区在线| 一本久久综合亚洲鲁鲁五月天| 欧美日韩美少妇| 精品国产1区二区| 国产精品区一区二区三| 亚洲图片欧美色图| 久久精品国产99国产精品| 国产成人自拍网| 91精品办公室少妇高潮对白| 91精品久久久久久蜜臀| 国产欧美一区二区精品久导航 | 北条麻妃国产九九精品视频| 91高清在线观看| 91精品国产一区二区| 国产欧美日韩视频在线观看| 亚洲天堂精品视频| 美女精品自拍一二三四| 国产成人午夜视频| 欧美日韩国产综合久久| 国产亚洲一区二区三区四区| 亚洲午夜免费福利视频| 国产乱理伦片在线观看夜一区| 色噜噜久久综合| 2014亚洲片线观看视频免费| 亚洲综合另类小说| 国产成人一区在线| 欧美日本一道本在线视频| 国产欧美va欧美不卡在线| 无吗不卡中文字幕| 99国产精品久久久久久久久久 | 欧美人成免费网站| 亚洲国产成人午夜在线一区| 视频一区欧美日韩| 成人av影视在线观看| 日韩一区二区视频在线观看| 亚洲日本va在线观看| 国产一区二区伦理| 欧美日韩在线直播| 中文字幕一区二区在线观看| 狠狠网亚洲精品| 欧美蜜桃一区二区三区| 日韩毛片精品高清免费| 国产伦精品一区二区三区免费| 欧美日韩国产不卡| 亚洲男帅同性gay1069| 国产麻豆午夜三级精品| 欧美一区二区不卡视频| 亚洲人成网站精品片在线观看| 国产精品综合二区| 精品久久久久久久久久久久包黑料| 亚洲精品乱码久久久久久黑人| 成人午夜精品在线| 欧美精品一区二区高清在线观看 | 久久这里只有精品首页| 日韩电影在线观看电影| 欧美日韩在线播放三区| 亚洲日本中文字幕区| 播五月开心婷婷综合| 亚洲国产成人porn| 国产亚洲婷婷免费| 国产综合成人久久大片91| 日韩欧美中文字幕公布| 免费日韩伦理电影| 欧美日韩激情一区| 亚洲一级二级在线| 91福利区一区二区三区| ...av二区三区久久精品| 99视频有精品| 中文字幕日韩一区二区| 成人aa视频在线观看| 国产精品乱码人人做人人爱 | 亚洲一区在线观看免费| 91福利在线观看| 一区二区三区欧美| 色婷婷久久久久swag精品| 一区二区三区中文字幕| 在线视频一区二区三区| 亚洲综合成人在线| 欧美美女bb生活片| 麻豆freexxxx性91精品| 欧美大片在线观看一区二区| 久久国产精品99精品国产| 精品乱人伦一区二区三区| 国产综合久久久久影院| 中文字幕免费不卡在线| 成人动漫在线一区| 一区二区三区小说| 欧美日韩在线播| 美洲天堂一区二卡三卡四卡视频 | 777xxx欧美| 另类的小说在线视频另类成人小视频在线 | 一区二区三区不卡在线观看| 欧美性受xxxx黑人xyx性爽| 日韩精品一卡二卡三卡四卡无卡| 欧美一级国产精品| 国模少妇一区二区三区| 中文字幕av一区二区三区高 | 国产亚洲精品资源在线26u| 国产69精品久久久久毛片 | 亚洲一区二区三区自拍| 在线91免费看| 国产成人av福利| 亚洲免费在线电影| 884aa四虎影成人精品一区| 国产在线播放一区| 亚洲欧洲三级电影| 884aa四虎影成人精品一区| 国产成人av电影| 一区二区三区在线视频播放| 日韩一级片在线观看| 成人黄色小视频| 香蕉乱码成人久久天堂爱免费| 日韩欧美国产一区二区三区 | 2020国产精品| 一本色道久久综合亚洲aⅴ蜜桃 | 国产精品一区二区男女羞羞无遮挡| 亚洲国产高清不卡| 欧美男同性恋视频网站| 成人在线综合网站| 一区二区三区免费看视频| 精品国产一区二区亚洲人成毛片| 成人综合激情网| 日韩高清电影一区| 中文字幕亚洲综合久久菠萝蜜| 日韩一卡二卡三卡| 色婷婷久久久综合中文字幕| 韩国午夜理伦三级不卡影院| 亚洲一二三专区| 国产日韩精品一区二区浪潮av| 在线观看av一区| 国产91丝袜在线观看| 日本亚洲欧美天堂免费| 亚洲欧美电影一区二区| 精品国产乱码久久久久久蜜臀| 色悠悠久久综合| 高清在线成人网| 韩国成人精品a∨在线观看| 午夜精品久久久久久不卡8050| 国产精品福利电影一区二区三区四区| 欧美精品久久一区二区三区| 91美女精品福利|