5 writes to MaxLength
PresentationUI (2)
MS\Internal\Documents\RequestedSignatureDialog.Designer.cs (1)
190_intentComboBox.MaxLength = _maxIntentLength;
MS\Internal\Documents\SigningDialog.Designer.cs (1)
139_reasonComboBox.MaxLength = _maxIntentLength;
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
234set { ComboBox.MaxLength = value; }
System.Windows.Forms.Tests (2)
System\Windows\Forms\ComboBoxTests.cs (2)
229control.MaxLength = value; 235control.MaxLength = value;
7 references to MaxLength
System.Windows.Forms (4)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (3)
693if (MaxLength != value) 2270if (MaxLength > 0) 2272PInvokeCore.SendMessage(this, PInvoke.CB_LIMITTEXT, (WPARAM)MaxLength);
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
233get { return ComboBox.MaxLength; }
System.Windows.Forms.Tests (3)
System\Windows\Forms\ComboBoxTests.cs (3)
101Assert.Equal(0, control.MaxLength); 230control.MaxLength.Should().Be(expected); 236control.MaxLength.Should().Be(expected);