Ken Tucker
Ken Tucker
Currently Caliburn.Micro does not have Command interface. You would need to create a class that implements ICommand interface to use to bind the SearchBar to. https://www.c-sharpcorner.com/article/explaing-icommand-in-mvvm-wpf/[]([](https://www.c-sharpcorner.com/article/explaing-icommand-in-mvvm-wpf/))
What type of project is this (WPF, Xamarin forms, UWP)? Can you share an example project with this issue?
I have not started on it yet
@KasperSK @CoreyVincent @mbreckon Thanks for doing this
@CoreyVincent yes please
@a44281071 I like the idea. Which languages would you add?
@Yinimi Code looks good. Need to do some testing this weekend
@KasperSK it is testing out ok. What do you think about merging it in?
Tested with this code protected override async Task OnActivateAsync(CancellationToken cancellationToken) { Numbers = new BindableCollection(); Numbers.CollectionChanged += Numbers_CollectionChanged; for (int x = 0; x < 10000; x++) { Numbers.Add(x); }...
@speedyalibaba Couple of questions. What version of caliburn micro are you using? Do you have a simple sample that repos this issue?