Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Samples/Windowing/cs-winui/WindowBasicsPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ private async void TitleBtn_Click(object sender, RoutedEventArgs e)
{
Title = "Single line text only!",
Content = "Only a single line of text is supported for a window titlebar. Please modify your text accordingly.",
CloseButtonText = "Ok"
CloseButtonText = "Ok",
XamlRoot = this.XamlRoot
};
ContentDialogResult result = await errorDialog.ShowAsync();
}
Expand Down