xtd 0.2.0
Loading...
Searching...
No Matches
combo_box_styles.h
Go to the documentation of this file.
1
4#pragma once
6#if !defined(__XTD_FORMS_NATIVE_LIBRARY__)
7#error "Do not include this file: Internal use only"
8#endif
10
11#include <cstddef>
12
13#if !defined(CBS_SIMPLE)
20constexpr size_t CBS_SIMPLE = 0x0001L;
27constexpr size_t CBS_DROPDOWN = 0x0002L;
34constexpr size_t CBS_DROPDOWNLIST = 0x0003L;
41constexpr size_t CBS_OWNERDRAWFIXED = 0x0010L;
48constexpr size_t CBS_OWNERDRAWVARIABLE = 0x0020L;
55constexpr size_t CBS_AUTOHSCROLL = 0x0040L;
62constexpr size_t CBS_OEMCONVERT = 0x0080L;
69constexpr size_t CBS_SORT = 0x0100L;
76constexpr size_t CBS_HASSTRINGS = 0x0200L;
83constexpr size_t CBS_NOINTEGRALHEIGHT = 0x0400L;
90constexpr size_t CBS_DISABLENOSCROLL = 0x0800L;
97constexpr size_t CBS_UPPERCASE = 0x2000L;
104constexpr size_t CBS_LOWERCASE = 0x4000L;
105#endif
constexpr size_t CBS_SIMPLE
Displays the list box at all times. The current selection in the list box is displayed in the edit co...
Definition combo_box_styles.h:20
constexpr size_t CBS_NOINTEGRALHEIGHT
Specifies that the size of the combo box is exactly the size specified by the application when it cre...
Definition combo_box_styles.h:83
constexpr size_t CBS_HASSTRINGS
Specifies that an owner-drawn combo box contains items consisting of strings. The combo box maintains...
Definition combo_box_styles.h:76
constexpr size_t CBS_AUTOHSCROLL
Automatically scrolls the text in an edit control to the right when the user types a character at the...
Definition combo_box_styles.h:55
constexpr size_t CBS_DISABLENOSCROLL
Shows a disabled vertical scroll bar in the list box when the box does not contain enough items to sc...
Definition combo_box_styles.h:90
constexpr size_t CBS_DROPDOWNLIST
Similar to CBS_DROPDOWN, except that the edit control is replaced by a static text item that displays...
Definition combo_box_styles.h:34
constexpr size_t CBS_LOWERCASE
Converts to lowercase all text in both the selection field and the list.
Definition combo_box_styles.h:104
constexpr size_t CBS_OEMCONVERT
Converts text entered in the combo box edit control from the Windows character set to the OEM charact...
Definition combo_box_styles.h:62
constexpr size_t CBS_SORT
Automatically sorts strings added to the list box.
Definition combo_box_styles.h:69
constexpr size_t CBS_OWNERDRAWVARIABLE
Specifies that the owner of the list box is responsible for drawing its contents and that the items i...
Definition combo_box_styles.h:48
constexpr size_t CBS_UPPERCASE
Converts to uppercase all text in both the selection field and the list.
Definition combo_box_styles.h:97
constexpr size_t CBS_OWNERDRAWFIXED
Specifies that the owner of the list box is responsible for drawing its contents and that the items i...
Definition combo_box_styles.h:41
constexpr size_t CBS_DROPDOWN
Similar to CBS_SIMPLE, except that the list box is not displayed unless the user selects an icon next...
Definition combo_box_styles.h:27