Icon in WPF Radial Menu (SfRadialMenu)

6 Feb 20251 minute to read

The Icon property of the RadialMenu is used to customize the icon displayed in the center of RadialMenu circle.

  • XAML
  • <navigation:SfRadialMenu IsOpen="True" >
    
    <navigation:SfRadialMenu.Icon>
    
                    <Grid Background="White">
    
                        <Image Source="ms-appx:///Assets/text.png" Width="20"  
    
     	 	 	                Stretch="Uniform"/>
    
                    </Grid>
    
                </navigation:SfRadialMenu.Icon>
    
    
    
     </navigation:SfRadialMenu>

    Concepts_img4