67 references to ComboBox
System.Windows.Forms (45)
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (45)
59
get { return
ComboBox
.AutoCompleteCustomSource; }
60
set {
ComboBox
.AutoCompleteCustomSource = value; }
69
get { return
ComboBox
.AutoCompleteMode; }
70
set {
ComboBox
.AutoCompleteMode = value; }
79
get { return
ComboBox
.AutoCompleteSource; }
80
set {
ComboBox
.AutoCompleteSource = value; }
150
get { return
ComboBox
.DropDownHeight; }
151
set {
ComboBox
.DropDownHeight = value; }
160
get { return
ComboBox
.DropDownStyle; }
161
set {
ComboBox
.DropDownStyle = value; }
168
get { return
ComboBox
.DropDownWidth; }
169
set {
ComboBox
.DropDownWidth = value; }
177
get { return
ComboBox
.DroppedDown; }
178
set {
ComboBox
.DroppedDown = value; }
187
get { return
ComboBox
.FlatStyle; }
188
set {
ComboBox
.FlatStyle = value; }
197
get { return
ComboBox
.IntegralHeight; }
198
set {
ComboBox
.IntegralHeight = value; }
213
return
ComboBox
.Items;
223
get { return
ComboBox
.MaxDropDownItems; }
224
set {
ComboBox
.MaxDropDownItems = value; }
233
get { return
ComboBox
.MaxLength; }
234
set {
ComboBox
.MaxLength = value; }
242
get { return
ComboBox
.SelectedIndex; }
243
set {
ComboBox
.SelectedIndex = value; }
260
get { return
ComboBox
.SelectedItem; }
261
set {
ComboBox
.SelectedItem = value; }
269
get { return
ComboBox
.SelectedText; }
270
set {
ComboBox
.SelectedText = value; }
278
get { return
ComboBox
.SelectionLength; }
279
set {
ComboBox
.SelectionLength = value; }
287
get { return
ComboBox
.SelectionStart; }
288
set {
ComboBox
.SelectionStart = value; }
296
get { return
ComboBox
.Sorted; }
297
set {
ComboBox
.Sorted = value; }
310
public void BeginUpdate() {
ComboBox
.BeginUpdate(); }
311
public void EndUpdate() {
ComboBox
.EndUpdate(); }
312
public int FindString(string? s) { return
ComboBox
.FindString(s); }
313
public int FindString(string? s, int startIndex) { return
ComboBox
.FindString(s, startIndex); }
314
public int FindStringExact(string? s) { return
ComboBox
.FindStringExact(s); }
315
public int FindStringExact(string? s, int startIndex) { return
ComboBox
.FindStringExact(s, startIndex); }
316
public int GetItemHeight(int index) { return
ComboBox
.GetItemHeight(index); }
317
public void Select(int start, int length) {
ComboBox
.Select(start, length); }
318
public void SelectAll() {
ComboBox
.SelectAll(); }
438
return
ComboBox
.ShouldSerializeDropDownWidth();
System.Windows.Forms.Tests (22)
System\Windows\Forms\AccessibleObjects\ToolStripComboBox.ToolStripComboBoxControl.ToolStripComboBoxControlAccessibleObjectTests.cs (3)
16
ToolStripComboBoxControl control = (ToolStripComboBoxControl)toolStripComboBox.
ComboBox
;
29
ToolStripComboBoxControl control = (ToolStripComboBoxControl)toolStripComboBox.
ComboBox
;
61
ToolStripComboBoxControl control = (ToolStripComboBoxControl)toolStripComboBox.
ComboBox
;
System\Windows\Forms\ControlTests.cs (6)
959
toolStrip1_ComboBox1.
ComboBox
.AssignParent(toolStrip1);
962
bool result = form.SelectNextControl(toolStrip1_ComboBox1.
ComboBox
, forward: true, tabStopOnly: true, nested: true, wrap: true);
1016
toolStrip2_ComboBox1.
ComboBox
.AssignParent(toolStrip2);
1017
toolStrip2_ComboBox2.
ComboBox
.AssignParent(toolStrip2);
1019
bool result = form.SelectNextControl(toolStrip2_ComboBox2.
ComboBox
, forward: false, tabStopOnly: true, nested: true, wrap: true);
1024
result = form.SelectNextControl(toolStrip2_ComboBox1.
ComboBox
, forward: false, tabStopOnly: true, nested: true, wrap: true);
System\Windows\Forms\ToolStripComboBoxTests.cs (13)
246
_toolStripComboBox.
ComboBox
.TestAccessor().Dynamic.OnDropDown(EventArgs.Empty);
251
_toolStripComboBox.
ComboBox
.TestAccessor().Dynamic.OnDropDown(EventArgs.Empty);
262
_toolStripComboBox.
ComboBox
.TestAccessor().Dynamic.OnDropDownClosed(EventArgs.Empty);
267
_toolStripComboBox.
ComboBox
.TestAccessor().Dynamic.OnDropDownClosed(EventArgs.Empty);
280
_toolStripComboBox.
ComboBox
.TestAccessor().Dynamic.OnDropDownStyleChanged(EventArgs.Empty);
285
_toolStripComboBox.
ComboBox
.TestAccessor().Dynamic.OnDropDownStyleChanged(EventArgs.Empty);
317
_toolStripComboBox.
ComboBox
.TestAccessor().Dynamic.OnTextUpdate(EventArgs.Empty);
322
_toolStripComboBox.
ComboBox
.TestAccessor().Dynamic.OnTextUpdate(EventArgs.Empty);
350
_toolStripComboBox.
ComboBox
.Text = "Item1";
351
_toolStripComboBox.
ComboBox
.Select(0, 5);
365
_toolStripComboBox.
ComboBox
.TestAccessor().Dynamic.OnDoubleClick(EventArgs.Empty);
370
_toolStripComboBox.
ComboBox
.TestAccessor().Dynamic.OnDoubleClick(EventArgs.Empty);
420
_toolStripComboBox.
ComboBox
.Select(0, 5);