9 writes to UseSystemPasswordChar
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
4380
EditTextBox.
UseSystemPasswordChar
= gridEntry.ShouldRenderPassword;
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
1123
txtBox.
UseSystemPasswordChar
= true; // this forces the creation of the control handle.
System.Windows.Forms.Tests (3)
System\Windows\Forms\AccessibleObjects\TextBoxAccessibleObjectTests.cs (3)
97
textBox.
UseSystemPasswordChar
= true;
112
textBox.
UseSystemPasswordChar
= useSystemPasswordChar;
155
textBox.
UseSystemPasswordChar
= true;
WinFormsControlsTest (4)
Password.cs (1)
16
textBox3.
UseSystemPasswordChar
= !textBox3.UseSystemPasswordChar;
Password.Designer.cs (3)
64
textBox1.
UseSystemPasswordChar
= true;
124
textBox3.
UseSystemPasswordChar
= true;
152
textBox5.
UseSystemPasswordChar
= true;
4 references to UseSystemPasswordChar
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\TextBoxDesigner.cs (1)
78
if (tb.
UseSystemPasswordChar
)
System.Windows.Forms.Tests (2)
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
124
Assert.False(control.
UseSystemPasswordChar
);
TextBoxTests.cs (1)
117
Assert.False(control.
UseSystemPasswordChar
);
WinFormsControlsTest (1)
Password.cs (1)
16
textBox3.UseSystemPasswordChar = !textBox3.
UseSystemPasswordChar
;