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

In this topic, you will create a submenu that's attached to one of a C1RadialMenu's items. This topic assumes that you have created a top-level radial menu (see Creating a Top-Level Menu) with at least one C1RadialMenuItem.

Complete the following steps:

  1. Place the following XAML between the <Xaml:C1RadialMenu> and </Xaml:C1RadialMenu> tags.
Markup
Copy Code
<Xaml:C1RadialMenuItem Header="Tap Here" >
  <Xaml:C1RadialMenuItem Header="Item 1" />
  <Xaml:C1RadialMenuItem Header="Item 2" />
  <Xaml:C1RadialMenuItem Header="Item 3" />
</Xaml:C1RadialMenuItem>
  1. Run the program.

 

This Topic Illustrates the Following:

This is the C1RadialMenu control after you tap the Tap Here item:

 

See Also