4 writes to HidePromptOnLeave
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\MaskedTextBoxDesigner.cs (1)
83designMaskedTextBox.HidePromptOnLeave = false;
System.Windows.Forms.Tests (3)
MaskedTextBoxTests.cs (3)
361control.HidePromptOnLeave = value; 369control.HidePromptOnLeave = value; 377control.HidePromptOnLeave = !value;
6 references to HidePromptOnLeave
System.Windows.Forms (3)
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (3)
1712includePrompt = !(HidePromptOnLeave && !Focused); 3006if (HidePromptOnLeave && !MaskFull) 3023if (HidePromptOnLeave && !MaskFull) // Prompt will show up.
System.Windows.Forms.Tests (3)
MaskedTextBoxTests.cs (3)
362control.HidePromptOnLeave.Should().Be(value); 370control.HidePromptOnLeave.Should().Be(value); 378control.HidePromptOnLeave.Should().Be(!value);