[UWP] fix NRE in SearchBarRenderer (#2717)

- fixes #2633
This commit is contained in:
Stephane Delcroix 2018-05-15 17:06:49 +02:00 коммит произвёл Rui Marinho
Родитель 2d55423da4
Коммит 41e10d38cb
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -96,8 +96,9 @@ namespace Xamarin.Forms.Platform.UWP
// If the Forms VisualStateManager is in play or the user wants to disable the Forms legacy
// color stuff, then the underlying textbox should just use the Forms VSM states
_queryTextBox.UseFormsVsm = Element.HasVisualStateGroups()
|| !Element.OnThisPlatform().GetIsLegacyColorModeEnabled();
if (_queryTextBox != null)
_queryTextBox.UseFormsVsm = Element.HasVisualStateGroups()
|| !Element.OnThisPlatform().GetIsLegacyColorModeEnabled();
}
void OnQuerySubmitted(AutoSuggestBox sender, AutoSuggestBoxQuerySubmittedEventArgs e)