New to Telerik UI for WPF? Start a free 30-day trial
How to close RadRadialMenu with an outside click
Updated on Sep 24, 2025
Environment
| Product Version | 2019.2.510 |
| Product | RadRadialMenu for WPF |
Description
How to close RadRadialMenu on a click outside the element.
Solution
-
Subscribe to the MouseLeftButtonDown event of the MainWindow.
C#this.MouseLeftButtonDown += MainWindow_MouseLeftButtonDown; -
Execute the RadialMenuCommands.Hide command in the MouseLeftButtonDown event handler.
C#private void MainWindow_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) { RadialMenuCommands.Hide.Execute(null, null); }