1 write to _maskedTextBox
System.Windows.Forms.Tests (1)
MaskedTextBoxTests.cs (1)
17
_maskedTextBox
= new();
60 references to _maskedTextBox
System.Windows.Forms.Tests (60)
MaskedTextBoxTests.cs (60)
22
_maskedTextBox
.Dispose();
28
_maskedTextBox
.Should().NotBeNull();
31
_maskedTextBox
.BeepOnError.Should().BeFalse();
32
_maskedTextBox
.AsciiOnly.Should().BeFalse();
33
_maskedTextBox
.Culture.Should().Be(CultureInfo.CurrentCulture);
34
_maskedTextBox
.AcceptsTab.Should().BeFalse();
35
_maskedTextBox
.CanUndo.Should().BeFalse();
36
_maskedTextBox
.WordWrap.Should().BeFalse();
37
_maskedTextBox
.Multiline.Should().BeFalse();
38
_maskedTextBox
.ResetOnSpace.Should().BeTrue();
39
_maskedTextBox
.SkipLiterals.Should().BeTrue();
40
_maskedTextBox
.ValidatingType.Should().BeNull();
41
_maskedTextBox
.TextAlign.Should().Be(HorizontalAlignment.Left);
42
_maskedTextBox
.FormatProvider.Should().Be(null);
43
_maskedTextBox
.ResetOnPrompt.Should().BeTrue();
44
_maskedTextBox
.ValidatingType.Should().BeNull();
45
_maskedTextBox
.PromptChar.Should().Be('_');
46
_maskedTextBox
.GetLineFromCharIndex(2).Should().Be(0);
47
_maskedTextBox
.GetFirstCharIndexFromLine(100).Should().Be(0);
48
_maskedTextBox
.GetFirstCharIndexOfCurrentLine().Should().Be(0);
49
_maskedTextBox
.PasswordChar.Should().Be('\0');
50
_maskedTextBox
.RejectInputOnFirstFailure.Should().BeFalse();
51
_maskedTextBox
.Text.Should().Be(string.Empty);
52
_maskedTextBox
.UseSystemPasswordChar.Should().BeFalse();
54
_maskedTextBox
.IsHandleCreated.Should().BeFalse();
707
TestProperty(
_maskedTextBox
, nameof(MaskedTextBox.RejectInputOnFirstFailure), value);
708
TestProperty(
_maskedTextBox
, nameof(MaskedTextBox.ResetOnPrompt), value);
727
_maskedTextBox
.Text = "Hello, World!";
728
_maskedTextBox
.CreateControl();
731
Point position =
_maskedTextBox
.GetPositionFromCharIndex(4);
735
char resultChar =
_maskedTextBox
.GetCharFromPosition(position);
739
int resultIndex =
_maskedTextBox
.GetCharIndexFromPosition(position);
751
sender.Should().Be(
_maskedTextBox
);
756
_maskedTextBox
.ValidatingType = validatingType;
757
_maskedTextBox
.ValidatingType.Should().Be(validatingType);
758
_maskedTextBox
.IsHandleCreated.Should().BeFalse();
760
_maskedTextBox
.Text = text;
761
_maskedTextBox
.CreateControl();
763
_maskedTextBox
.TypeValidationCompleted += handler;
764
object result =
_maskedTextBox
.ValidateText();
768
_maskedTextBox
.TypeValidationCompleted -= handler;
769
_maskedTextBox
.ValidateText();
784
_maskedTextBox
.PasswordChar = originalValue;
785
_maskedTextBox
.PasswordChar.Should().Be(originalValue);
787
_maskedTextBox
.PasswordChar = value;
788
_maskedTextBox
.PasswordChar.Should().Be(value);
792
_maskedTextBox
.PromptChar = originalValue;
793
_maskedTextBox
.PromptChar.Should().Be(originalValue);
795
_maskedTextBox
.PromptChar = value;
796
_maskedTextBox
.PromptChar.Should().Be(value);
803
Action act = () =>
_maskedTextBox
.PromptChar = '\0';
806
Action act2 = () =>
_maskedTextBox
.PasswordChar = '\t';
813
_maskedTextBox
.PromptChar = 'A';
814
Action act = () =>
_maskedTextBox
.PasswordChar = 'A';
821
_maskedTextBox
.Mask = "00000";
822
_maskedTextBox
.UseSystemPasswordChar = true;
823
_maskedTextBox
.PasswordChar = 'A';
825
if (
_maskedTextBox
.MaskedTextProvider is not null)
827
_maskedTextBox
.PasswordChar.Should().Be('●');
828
_maskedTextBox
.MaskedTextProvider.PasswordChar.Should().Be('●');