WinRT Edition Basic Library > Radial Menu for WinRT > Radial Menu for WinRT Quick Start > Step 1 of 3: Creating a C1RadialMenu Application |
In this step, you'll create a Windows Store application using the C1RadialMenu control.
Complete the following steps:
Markup Copy Codexmlns:Xaml="using:C1.Xaml"
This adds references to the C1.Xaml assembly to 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 WinRT quick start. In this step, you created a Windows Store project. In the next step, you will add a RadialMenu control and menu items.