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