TextBoxMask and KeyboardAccelerators not working togheter in WinUI3 #4908
Unanswered
ZeusZoe
asked this question in
Questions & Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I've created a new simple project for test keyboardaccelerators functionality.
I used a Communitytoolkit extension, the TextBoxExtensions.Mask and I noted that not work.
This is the xaml:
`
`
and this is the code:
` public sealed partial class MainWindow : Window
{
ObservableCollection oc=new ObservableCollection();
public MainWindow()
{
this.InitializeComponent();
lb.ItemsSource = oc;
}
`
After push the enter key, the textbox should clear all its content, but not, it removes only last character available.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions