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)
359control.HidePromptOnLeave = value; 367control.HidePromptOnLeave = value; 375control.HidePromptOnLeave = !value;
6 references to HidePromptOnLeave
System.Windows.Forms (3)
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (3)
1714includePrompt = !(HidePromptOnLeave && !Focused); 3008if (HidePromptOnLeave && !MaskFull) 3025if (HidePromptOnLeave && !MaskFull) // Prompt will show up.
System.Windows.Forms.Tests (3)
MaskedTextBoxTests.cs (3)
360control.HidePromptOnLeave.Should().Be(value); 368control.HidePromptOnLeave.Should().Be(value); 376control.HidePromptOnLeave.Should().Be(!value);