We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2a1874 commit 2125e1bCopy full SHA for 2125e1b
src/Controls/src/Core/Handlers/Shell/ShellItemHandler.Windows.cs
@@ -88,6 +88,9 @@ protected override void DisconnectHandler(FrameworkElement platformView)
88
mnv.SelectionChanged -= OnNavigationTabChanged;
89
if (mnv.AutoSuggestBox is not null)
90
{
91
+ mnv.AutoSuggestBox.TextChanged -= OnSearchBoxTextChanged;
92
+ mnv.AutoSuggestBox.QuerySubmitted -= OnSearchBoxQuerySubmitted;
93
+ mnv.AutoSuggestBox.SuggestionChosen -= OnSearchBoxSuggestionChosen;
94
mnv.AutoSuggestBox.GotFocus -= OnSearchBoxGotFocus;
95
mnv.AutoSuggestBox.LostFocus -= OnSearchBoxLostFocus;
96
}
0 commit comments