You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
private async void Page_Loaded(object sender, Windows.UI.Xaml.RoutedEventArgs e)
{
ContentDialog noWifiDialog = new ContentDialog
{
Title = "No wifi connection",
Content = "Check your connection and try again.",
CloseButtonText = "Ok"
};
_ = await noWifiDialog.ShowAsync();
}
Run the app and see how ContentDialog covers up the TextBlock. If you remove the color theme this does not happen.
The text was updated successfully, but these errors were encountered:
under3415
changed the title
When coleor theme is used, ContentDialog covers the whole page
When color theme is used, ContentDialog covers the whole page
Aug 29, 2020
Steps to replicate:
App.Xaml
add this:TextBlock
andLoaded
event toMainPage
ContentDialog
call toLoaded
eventContentDialog
covers up theTextBlock
. If you remove the color theme this does not happen.The text was updated successfully, but these errors were encountered: