WinUI 3 Desktop WindowsAppSDK (1.2.230313)
I'm recieving a NullReferenceException on an AutoSuggestBox component when typing in it. When debugging, the breakpoints never hit their methods, and the application breaks with the following error image:
My View looks like this:
<AutoSuggestBox QueryIcon="Find" 
                                ItemsSource="{x:Bind AP.ViewModel.Entities, Mode=TwoWay}"
                                TextChanged="{x:Bind AP.ViewModel.AutoSuggestBox_TextChanged}"
                                SuggestionChosen="{x:Bind AP.ViewModel.AutoSuggestBox_SuggestionChosen}"
                                QuerySubmitted="{x:Bind AP.ViewModel.AutoSuggestBox_QuerySubmitted}"/>

