1 write to dataBoundComboBox
WinFormsControlsTest (1)
ComboBoxes.Designer.cs (1)
46this.dataBoundComboBox = new System.Windows.Forms.ComboBox();
9 references to dataBoundComboBox
WinFormsControlsTest (9)
ComboBoxes.cs (2)
17dataBoundComboBox.DataSource = TestDataSources.GetPersons(); 18dataBoundComboBox.DisplayMember = TestDataSources.PersonDisplayMember;
ComboBoxes.Designer.cs (7)
229this.dataBoundComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple; 230this.dataBoundComboBox.FlatStyle = System.Windows.Forms.FlatStyle.System; 231this.dataBoundComboBox.Location = new System.Drawing.Point(836, 22); 232this.dataBoundComboBox.Name = "DataBoundComboBox"; 233this.dataBoundComboBox.Size = new System.Drawing.Size(121, 150); 234this.dataBoundComboBox.TabIndex = 13; 272this.Controls.Add(this.dataBoundComboBox);