How to disable NSMenuItem? I am trying to disable NSMenuItem after clicking it. A click is handled correctly using Action.
I tried changing the property Enabledto false in the following two ways:
partial void Logout (AppKit.NSMenuItem sender)
{
sender.Enabled = false;
}
and
partial void Logout (AppKit.NSMenuItem sender)
{
LogoutItemOutlet.Enabled = false;
}
But every time this action is called, the fields Enabledare saved true. The menu item itself also never turns off.
How to disable NSMenuItem after completing an action?
source
share