1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
use UIWindowsAndMessaging as winmsg;
/// If the combo box's edit control is completely filled with text and the user
/// enters more text at the end of the edit control line, the existing text is
/// automatically scrolled
pub use CBS_AUTOHSCROLL;
/// A scroll bar is always shown in the combo box's list box
pub use CBS_DISABLENOSCROLL;
/// Similar to the `CBS_SIMPLE` style, the `CBS_DROPDOWN` style causes the combo
/// box's list box to be hidden until the user presses the Arrow button located
/// next to the combo box's edit control
pub use CBS_DROPDOWN;
/// Similar to the `CBS_DROPDOWN` style, the `CBS_DROPDOWNLIST` style causes the
/// combo box's edit control to be set to read-only
pub use CBS_DROPDOWNLIST;
/// Declares that the entries in an owner-drawn combo box are strings
pub use CBS_HASSTRINGS;
/// If this style is not used, the system automatically resizes the height of
/// the combo box so that none of its items are partially displayed
pub use CBS_NOINTEGRALHEIGHT;
/// When this style is used, text that is entered into the combo box's edit
/// control is automatically converted from the system's character set to the
/// OEM character set and then back again to the system's character set
pub use CBS_OEMCONVERT;
/// When this style is used, the system makes the owner of the combo box
/// responsible for drawing its contents and the height of all of the list box's
/// items is the same
pub use CBS_OWNERDRAWFIXED;
/// When this style is used, the system makes the owner of the combo box
/// responsible for drawing its contents and the height of each of the list
/// box's items is not the same
pub use CBS_OWNERDRAWVARIABLE;
/// When this style is used, the combo box's list box is always displayed
pub use CBS_SIMPLE;
/// The combo box's list box entries are automatically sorted
pub use CBS_SORT;