windowsforms-devexpress-dot-xtrabars-dot-ribbon-dot-radialmenu-bfa359ea.md
Gets or sets whether the current RadialMenu should be closed when an end-user clicks anywhere outside the RadialMenu‘s area.
Namespace : DevExpress.XtraBars.Ribbon
Assembly : DevExpress.XtraBars.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(true)]
[DXCategory("Behavior")]
public bool CloseOnOuterMouseClick { get; set; }
<DefaultValue(True)>
<DXCategory("Behavior")>
Public Property CloseOnOuterMouseClick As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true if the current RadialMenu should be closed when an end-user clicks anywhere outside the RadialMenu‘s area; otherwise, false.
|
The CloseOnOuterMouseClick property specifies whether a RadialMenu completely closes when an end-user clicks anywhere outside this RadialMenu. You can also use the RadialMenu.CollapseOnOuterMouseClick property to specify whether a RadialMenu should collapse to the central circle button. If the RadialMenu.CollapseOnOuterMouseClick property equals true and the CloseOnOuterMouseClick property equals false , clicking outside a RadialMenu at runtime will cause its collapse, with the central circle button remaining visible.
See Also