private void picker_Loaded(object sender, RoutedEventArgs e)
{
if (BottomAppBar != null && picker != null)
{
foreach (Popup popup in VisualUtils.FindVisualChildrenOfType<Popup>(picker))
{
if (popup != null && popup.Name == "PART_DropDown")
{
popup.Width = Window.Current.Bounds.Width;
popup.Height = Window.Current.Bounds.Height;
//popup.Margin = new Thickness(0, -BottomAppBar.Height, 0, 0);
break;
}
}
picker.Loaded -= picker_Loaded;
}
}