MainPage.xaml
<Page
x:Class="UniversalAppTutorials.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:UniversalAppTutorials"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<StackPanel
x:Name="stack_panel1"
Margin="50"
Orientation="Vertical"
Background="Pink"
Padding="35"
>
<Button
x:Name="button1"
Content="Show Content Dialog"
Click="Button1_Click"
/>
</StackPanel>
</Page>
MainPage.xaml.cs
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
namespace UniversalAppTutorials
{
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();
}
private void Button1_Click(object sender, RoutedEventArgs e) {
// Show the content dialog
DiaplyContentDialog();
}
// Custom method to create and diaplay a content dialog
private void DiaplyContentDialog() {
ContentDialog dialog = new ContentDialog() {
Title = "Content Dialog Title",
Content = "This is the content of dialog.",
PrimaryButtonText = "Ok"
};
// Finally, show the dialog
dialog.ShowAsync();
}
}
}


- UWP - Polygon example
- UWP - Get ComboBox selected item
- UWP - ListView multi select example
- UWP - ListView item style example
- UWP - How to change ListView item height
- UWP - ListView alternate item style
- UWP - How to create a ListView programmatically
- UWP - How to use RadioButton
- UWP - ToggleSwitch example
- UWP - Simple Flyout example
- UWP - HyperlinkButton example
- UWP - Hyperlink text element example
- UWP - Remove control programmatically
- UWP - Create Button programmatically
- UWP - Button click event