NicoZ

Results 13 comments of NicoZ

> Hi NicolaZuc, > > I managed to solved it by removing Entry.Text = "" in OnFocus EventHandler. You may try it. Hi, that's something that u have on ur...

> I'm having the same issue. The barcode scanner acts as a keyboard wedge, and it sends a CRLF at the end of the scan. Sometimes it works properly, but...

Same issue here. My workaround: xaml: ``` ``` c#: ``` private void SearchBar_TextChanged(object sender, TextChangedEventArgs e) { if (string.IsNullOrEmpty(e.NewTextValue)) if (((SearchBar)sender).SearchCommand?.CanExecute(e.NewTextValue) == true) ((SearchBar)sender).SearchCommand?.Execute(e.NewTextValue); } ```