45 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();