New to Telerik UI for WPFStart a free 30-day trial

How to close RadRadialMenu with an outside click

Updated on Sep 24, 2025

Environment

Product Version2019.2.510
ProductRadRadialMenu for WPF

Description

How to close RadRadialMenu on a click outside the element.

Solution

  1. Subscribe to the MouseLeftButtonDown event of the MainWindow.

    C#
    	this.MouseLeftButtonDown += MainWindow_MouseLeftButtonDown;
  2. Execute the RadialMenuCommands.Hide command in the MouseLeftButtonDown event handler.

    C#
    	private void MainWindow_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
    	{
    		RadialMenuCommands.Hide.Execute(null, null);
    	}

See Also