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="AliceBlue"
Padding="35"
>
<HyperlinkButton
x:Name="hyperlink_button1"
Content="ASP.NET"
NavigateUri="https://www.asp.net"
Margin="20"
/>
<HyperlinkButton
x:Name="hyperlink_button2"
NavigateUri="https://www.google.com"
Margin="20"
>
<Image Source="Assets/googlelogo_color_272x92dp.png" Width="100"/>
</HyperlinkButton>
<HyperlinkButton
x:Name="hyperlink_button3"
Content="Android"
NavigateUri="https://www.android.com"
Margin="20"
/>
</StackPanel>
</Page>

- UWP - PivotItem header with image and text
- UWP - Simple Pivot example
- UWP - Border example
- UWP - Polygon example
- UWP - Rectangle 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 - Simple ContentDialog example