ComponentOne Basic Library for UWP
Creating a Top-Level Menu
UWP Edition Basic Library > Radial Menu for UWP > Radial Menu for UWP Task-Based Help > Creating Radial Menus > Creating a Top-Level Menu

In this topic, you will learn how to create a top-level radial menu for the C1RadialMenu control.

Complete the following steps:

  1. Place the following XAML between the <Grid> and </Grid> tags:
Markup
Copy Code
<Xaml:C1ContextMenuService.ContextMenu>
     <Xaml:C1RadialMenu >                             
    </Xaml:C1RadialMenu>
 </Xaml:C1ContextMenuService.ContextMenu>
  1. Place the following XAML between the <Xaml:C1RadialMenu> and </Xaml:C1RadialMenu> tags:
Markup
Copy Code
<Xaml:C1RadialMenuItem Header="RadialMenuItem1" />
<Xaml:C1RadialMenuItem Header="RadialMenuItem2" />
<Xaml:C1RadialMenuItem Header="RadialMenuItem3" />
  1. Run the program and observe the following:

 

This topic illustrates the following:

 

See Also