22 references to ComboBoxState
System.Windows.Forms (22)
winforms\Managed\System\WinForms\ComboBoxRenderer.cs (9)
47private static void DrawBackground(Graphics g, Rectangle bounds, ComboBoxState state) { 51if (state != ComboBoxState.Disabled) { 71public static void DrawTextBox(Graphics g, Rectangle bounds, ComboBoxState state) { 88public static void DrawTextBox(Graphics g, Rectangle bounds, string comboBoxText, Font font, ComboBoxState state) { 98public static void DrawTextBox(Graphics g, Rectangle bounds, string comboBoxText, Font font, Rectangle textBounds, ComboBoxState state) { 108public static void DrawTextBox(Graphics g, Rectangle bounds, string comboBoxText, Font font, TextFormatFlags flags, ComboBoxState state) { 130public static void DrawTextBox(Graphics g, Rectangle bounds, string comboBoxText, Font font, Rectangle textBounds, TextFormatFlags flags, ComboBoxState state) { 152public static void DrawDropDownButton(Graphics g, Rectangle bounds, ComboBoxState state) { 166internal static void DrawDropDownButtonForHandle(Graphics g, Rectangle bounds, ComboBoxState state, IntPtr handle) {
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (8)
2132ComboBoxState comboBoxState = ComboBoxState.Normal; 2137comboBoxState = ComboBoxState.Hot; 2296DataGridViewComboBoxCellRenderer.DrawDropDownButton(g, dropRect, ComboBoxState.Normal); 3185public static void DrawTextBox(Graphics g, Rectangle bounds, ComboBoxState state) 3190public static void DrawDropDownButton(Graphics g, Rectangle bounds, ComboBoxState state) 3209public static void DrawDropDownButton(Graphics g, Rectangle bounds, ComboBoxState state, bool rightToLeft) 3236public static void DrawReadOnlyButton(Graphics g, Rectangle bounds, ComboBoxState state)
winforms\Managed\System\WinForms\PropertyGridInternal\DropDownButton.cs (5)
88ComboBoxState cbState = ComboBoxState.Normal; 91cbState = ComboBoxState.Pressed; 94cbState = ComboBoxState.Hot; 98if (cbState == ComboBoxState.Normal) {