3 writes to DropDownWidth
System.Windows.Forms (3)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (1)
872dataGridViewCell.DropDownWidth = this.DropDownWidth;
winforms\Managed\System\WinForms\DataGridViewComboBoxColumn.cs (2)
296this.ComboBoxCellTemplate.DropDownWidth = value; 307dataGridViewCell.DropDownWidth = value;
6 references to DropDownWidth
System.Windows.Forms (6)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (5)
819if (this.DropDownWidth == 1) 848if (dropDownWidth != this.DropDownWidth) 850UnsafeNativeMethods.SendMessage(new HandleRef(comboBox, comboBox.Handle), NativeMethods.CB_SETDROPPEDWIDTH, this.DropDownWidth, 0); 872dataGridViewCell.DropDownWidth = this.DropDownWidth; 1532comboBox.DropDownWidth = this.DropDownWidth;
winforms\Managed\System\WinForms\DataGridViewComboBoxColumn.cs (1)
290return this.ComboBoxCellTemplate.DropDownWidth;