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"
>
<TextBlock x:Name="text_block1" TextWrapping="WrapWholeWords">
<Span xml:space="default">
<Hyperlink NavigateUri="https://www.asp.net">ASP.NET</Hyperlink>
<Run>RadioButtonlist control enable user to select an item from list.</Run>
<Hyperlink NavigateUri="https://asp-net-example.blogspot.com/2008/10/radiobuttonlist-example-how-to-use.html" Foreground="Crimson">RadioButtonlist</Hyperlink>
<Run> support data binding programmatically from </Run>
<Hyperlink NavigateUri="https://en.wikipedia.org/wiki/Microsoft_SQL_Server" UnderlineStyle="None" FontWeight="Bold" FontStyle="Italic">Database</Hyperlink><Run>.</Run>
</Span>
</TextBlock>
</StackPanel>
</Page>

- UWP - ListView item style example
- UWP - How to change ListView item height
- UWP - How to add item separator to ListView
- UWP - ListView alternate item style
- UWP - How to create a ListView programmatically
- UWP - How to use RadioButton
- UWP - ToggleSwitch example
- UWP - Slider example
- UWP - Show image and text on a Button
- UWP - Simple MessageDialog example
- UWP - Remove control programmatically
- UWP - Create Button programmatically
- UWP - RepeatButton example
- UWP - CheckBox group example
- UWP - Button click event