This documentation is archived and is not being maintained.
ContextMenu::StaysOpen Property
.NET Framework (current version)
Gets or sets a value that indicates whether the ContextMenu should close automatically.
Namespace:
System.Windows.Controls Assembly:
PresentationFramework (in PresentationFramework.dll)
public :
[BindableAttribute(true )]
property bool StaysOpen {
bool get();
void set(bool value );
}
Property Value
Type:
System::Boolean true if the menu should stay open until the IsOpen property changes to false ; otherwise, false . The default is false .
The following example uses the StaysOpen property to make a context menu that will stay open until an event occurs that changes the IsOpen property to false .
< ContextMenu Name = " cm " Opened = " OnOpened " Closed = " OnClosed " StaysOpen = " true " >
.NET Framework
Available since 3.0
Return to top