Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement MaskedTextBox #6453

Merged
merged 49 commits into from
Sep 8, 2021
Merged
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
ee4ab76
wip
Aug 4, 2021
de9ae7a
it seems to be working
Aug 16, 2021
202abae
wip
Aug 17, 2021
8c2e19a
fix
Aug 17, 2021
da7ccf3
wip
Aug 17, 2021
84df804
fix
Aug 17, 2021
c6bc254
reorganize
Aug 17, 2021
efe122c
AllowPromptAsInput add
Aug 18, 2021
3f64e97
add AsciiOnly property
Aug 18, 2021
38241b6
wip
Aug 18, 2021
acdc930
wip
Aug 18, 2021
fa91dd0
add Culture property
Aug 18, 2021
cd0686d
add HidePromptOnLeave property
Aug 18, 2021
890db3a
add PasswordChar property
Aug 19, 2021
cda0a6b
cleanup
Aug 19, 2021
8df0b86
fix
Aug 20, 2021
578fd34
pasting works
Aug 20, 2021
e8ca425
refactor
Aug 20, 2021
3eaf4db
wip
Aug 20, 2021
64b982f
wip
Aug 20, 2021
4aee525
wip
Aug 20, 2021
291cc68
wip
Aug 20, 2021
043873f
wip
Aug 20, 2021
d06c380
more tests
Aug 20, 2021
79e8041
wip
Aug 20, 2021
bb63f2f
add comments
Aug 20, 2021
0b0093a
wip
Aug 20, 2021
0dbdafa
wip
Aug 20, 2021
3812250
cleanup
Aug 23, 2021
8edd7e2
input validation
Aug 23, 2021
69f0d3b
complete refactor
Aug 23, 2021
1927a6c
merge master
Aug 23, 2021
c733caa
fix
Aug 23, 2021
f362e5e
dont use not null
Aug 23, 2021
0639984
use direct property for culture
Aug 24, 2021
f3a7637
use vars
Aug 25, 2021
6364670
fix spacing
Aug 25, 2021
c75020e
fix
Sep 7, 2021
e0f1c7f
upd
Sep 7, 2021
76b4d10
wip
Sep 7, 2021
3f5f44b
wip
Sep 7, 2021
cbd17ee
wip
Sep 7, 2021
26317d1
fix
Sep 7, 2021
29ae56e
Merge branch 'master' into masked-textbox
grokys Sep 8, 2021
b3bccec
add header
Sep 8, 2021
9ee521a
Merge branch 'masked-textbox' of https://github.com/Takoooooo/Avaloni…
Sep 8, 2021
0979214
revert
Sep 8, 2021
d157910
upd
Sep 8, 2021
9e1eac8
upd
Sep 8, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions samples/ControlCatalog/Pages/TextBoxPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
Watermark="Floating Watermark"
UseFloatingWatermark="True"
Text="Lorem ipsum dolor sit amet, consectetur adipiscing elit."/>
<MaskedTextBox Width="200" ResetOnSpace="False" Mask="(LLL) 999-0000"/>

<TextBox Width="200" Text="Validation Error">
<DataValidationErrors.Error>
Expand Down