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
System.Windows.Forms (3)
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (2)
44Text = string.Empty; 507Text = _stringValue;
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (1)
262set => base.Text = value;
System.Windows.Forms.Tests (13)
System\Windows\Forms\DomainUpDownTests.cs (3)
1330_sub.Text = "Text"; 1404_control.Text = text; 1412_control.Text = "NoSuchItem";
System\Windows\Forms\UpDownBaseTests.cs (10)
1268control.Text = value; 1277control.Text = value; 1315control.Text = value; 1327control.Text = value; 1354control.Text = "text"; 1359control.Text = "text"; 1364control.Text = null; 1370control.Text = "text"; 2622Text = text 2641Text = text
TestPassApp (2)
DataBindingExample.Designer.cs (1)
157this.domainUpDown1.Text = "Student count";
RemainingControls.Designer.cs (1)
94this.domainUpDown1.Text = "domainUpDown1";
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); 477matchIndex = 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)
141_sub.Text.Should().BeEmpty(); 272_sub.Text.Should().BeEmpty(); 280_sub.Text.Should().BeEmpty(); 298_sub.Text.Should().Be(expectedText); 307_sub.Text.Should().Be(expectedText); 316_sub.Text.Should().Be(expectedText); 335_sub.Text.Should().Be(expectedText); 344_sub.Text.Should().Be(expectedText); 353_sub.Text.Should().Be(expectedText); 443_sub.Text.Should().BeEmpty(); 452_sub.Text.Should().BeEmpty(); 471_sub.Text.Should().Be(expectedText); 480_sub.Text.Should().Be(expectedText); 489_sub.Text.Should().Be(expectedText); 498_sub.Text.Should().Be(expectedText); 518_sub.Text.Should().Be(expectedText); 527_sub.Text.Should().Be(expectedText); 536_sub.Text.Should().Be(expectedText); 545_sub.Text.Should().Be(expectedText); 1281_sub.Text.Should().BeEmpty(); 1288_sub.Text.Should().BeEmpty(); 1307_sub.Text.Should().BeEmpty(); 1314_sub.Text.Should().BeEmpty(); 1335_sub.Text.Should().Be("Item1"); 1342_sub.Text.Should().Be("Item1");
System\Windows\Forms\UpDownBaseTests.cs (9)
124Assert.Empty(control.Text); 1269Assert.Equal(expected, control.Text); 1278Assert.Equal(expected, control.Text); 1316Assert.Equal(expected, control.Text); 1328Assert.Equal(expected, control.Text); 1355Assert.Equal("text", control.Text); 1360Assert.Equal("text", control.Text); 1365Assert.Empty(control.Text); 1371Assert.Equal("text", control.Text);