In this step, you'll create a Universal Windows application using the C1RadialMenu control.
Complete the following steps:
Markup Copy Codexmlns:Xaml="using:C1.Xaml"
This adds the required references in the project.
Markup Copy Code <Page.Resources> <Style TargetType="TextBlock" x:Key="TextIconStyle"> <Setter Property="Margin" Value="-10" /> <Setter Property="FontSize" Value="20" /> <Setter Property="FontFamily" Value="Segoe UI Symbol" /> <Setter Property="FontWeight" Value="Normal" /> <Setter Property="Foreground" Value="#333333" /> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> </Style> </Page.Resources>
This markup adds style resources that define the layout of our menu items content. We will add the menu items to C1RadialMenu in the next step. Each of our menu items will contain an Image and a TextBlock label
Markup Copy Code <Border Background="LemonChiffon" MinHeight="40" BorderBrush="#969696" BorderThickness="1" Padding="5" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> </Border >
This markup adds border definition to the application.
You have completed the first step of the RadialMenu for UWP quick start. In this step, you created a Universal Windows project. In the next step, you will add a RadialMenu control and menu items.