46 references to ComboBox
System.Windows.Forms (46)
winforms\Managed\System\WinForms\ToolStripComboBox.cs (46)
114return this.ownerItem.ComboBox.AccessibilityObject; 143get { return ComboBox.AutoCompleteCustomSource; } 144set { ComboBox.AutoCompleteCustomSource = value;} 154get { return ComboBox.AutoCompleteMode; } 155set { ComboBox.AutoCompleteMode = value;} 165get { return ComboBox.AutoCompleteSource; } 166set { ComboBox.AutoCompleteSource = value;} 281get { return ComboBox.DropDownHeight; } 282set { ComboBox.DropDownHeight = value;} 294get { return ComboBox.DropDownStyle; } 295set { ComboBox.DropDownStyle = value;} 304get { return ComboBox.DropDownWidth; } 305set { ComboBox.DropDownWidth = value;} 315get { return ComboBox.DroppedDown; } 316set { ComboBox.DroppedDown = value;} 327get { return ComboBox.FlatStyle; } 328set { ComboBox.FlatStyle = value;} 339get { return ComboBox.IntegralHeight; } 340set { ComboBox.IntegralHeight = value;} 355return ComboBox.Items; 367get { return ComboBox.MaxDropDownItems; } 368set { ComboBox.MaxDropDownItems = value;} 378get { return ComboBox.MaxLength; } 379set { ComboBox.MaxLength = value; } 389get { return ComboBox.SelectedIndex; } 390set { ComboBox.SelectedIndex = value;} 410get { return ComboBox.SelectedItem; } 411set { ComboBox.SelectedItem = value;} 421get { return ComboBox.SelectedText; } 422set { ComboBox.SelectedText = value;} 431get { return ComboBox.SelectionLength; } 432set { ComboBox.SelectionLength = value;} 442get { return ComboBox.SelectionStart; } 443set { ComboBox.SelectionStart = value;} 452get { return ComboBox.Sorted; } 453set {ComboBox.Sorted = value;} 471public void BeginUpdate() { ComboBox.BeginUpdate(); } 473public void EndUpdate() { ComboBox.EndUpdate(); } 475public int FindString(string s) { return ComboBox.FindString(s); } 477public int FindString(string s, int startIndex) { return ComboBox.FindString(s, startIndex); } 479public int FindStringExact(string s) { return ComboBox.FindStringExact(s); } 481public int FindStringExact(string s, int startIndex) { return ComboBox.FindStringExact(s, startIndex); } 483public int GetItemHeight(int index) { return ComboBox.GetItemHeight(index); } 485public void Select(int start, int length) { ComboBox.Select(start, length); } 487public void SelectAll() { ComboBox.SelectAll(); } 591return ComboBox.ShouldSerializeDropDownWidth();