Base:
property
Text
System.Windows.Forms.Control.Text
1 override of Text
System.Windows.Forms (1)
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (1)
259public override string Text
20 writes to Text
Accessibility_Core_App (2)
DataBindingExample.Designer.cs (1)
157this.domainUpDown1.Text = "Student count";
RemainingControls.Designer.cs (1)
94this.domainUpDown1.Text = "domainUpDown1";
System.Windows.Forms (3)
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (2)
44Text = string.Empty; 513Text = _stringValue;
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (1)
262set => base.Text = value;
System.Windows.Forms.Tests (13)
System\Windows\Forms\DomainUpDownTests.cs (3)
1328_sub.Text = "Text"; 1402_control.Text = text; 1410_control.Text = "NoSuchItem";
System\Windows\Forms\UpDownBaseTests.cs (10)
1266control.Text = value; 1275control.Text = value; 1313control.Text = value; 1325control.Text = value; 1352control.Text = "text"; 1357control.Text = "text"; 1362control.Text = null; 1368control.Text = "text"; 2620Text = text 2639Text = text
WinFormsControlsTest (2)
CollectionEditors.Designer.cs (1)
103this.domainUpDown1.Text = "domainUpDown1";
MultipleControls.Designer.cs (1)
256this.domainUpDown1.Text = "domainUpDown1";
37 references to Text
System.Windows.Forms (3)
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (2)
219matchIndex = MatchIndex(Text, false, _domainIndex); 483matchIndex = MatchIndex(Text, false, _domainIndex);
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (1)
261get => base.Text;
System.Windows.Forms.Tests (34)
System\Windows\Forms\DomainUpDownTests.cs (25)
139_sub.Text.Should().BeEmpty(); 270_sub.Text.Should().BeEmpty(); 278_sub.Text.Should().BeEmpty(); 296_sub.Text.Should().Be(expectedText); 305_sub.Text.Should().Be(expectedText); 314_sub.Text.Should().Be(expectedText); 333_sub.Text.Should().Be(expectedText); 342_sub.Text.Should().Be(expectedText); 351_sub.Text.Should().Be(expectedText); 441_sub.Text.Should().BeEmpty(); 450_sub.Text.Should().BeEmpty(); 469_sub.Text.Should().Be(expectedText); 478_sub.Text.Should().Be(expectedText); 487_sub.Text.Should().Be(expectedText); 496_sub.Text.Should().Be(expectedText); 516_sub.Text.Should().Be(expectedText); 525_sub.Text.Should().Be(expectedText); 534_sub.Text.Should().Be(expectedText); 543_sub.Text.Should().Be(expectedText); 1279_sub.Text.Should().BeEmpty(); 1286_sub.Text.Should().BeEmpty(); 1305_sub.Text.Should().BeEmpty(); 1312_sub.Text.Should().BeEmpty(); 1333_sub.Text.Should().Be("Item1"); 1340_sub.Text.Should().Be("Item1");
System\Windows\Forms\UpDownBaseTests.cs (9)
122Assert.Empty(control.Text); 1267Assert.Equal(expected, control.Text); 1276Assert.Equal(expected, control.Text); 1314Assert.Equal(expected, control.Text); 1326Assert.Equal(expected, control.Text); 1353Assert.Equal("text", control.Text); 1358Assert.Equal("text", control.Text); 1363Assert.Empty(control.Text); 1369Assert.Equal("text", control.Text);