1 write to MaxLength
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ToolStripComboBox.cs (1)
379set { ComboBox.MaxLength = value; }
4 references to MaxLength
System.Windows.Forms (4)
winforms\Managed\System\WinForms\ComboBox.cs (3)
851if (MaxLength != value) { 2428if (MaxLength > 0) { 2429SendMessage(NativeMethods.CB_LIMITTEXT, MaxLength, 0);
winforms\Managed\System\WinForms\ToolStripComboBox.cs (1)
378get { return ComboBox.MaxLength; }