1 implementation of Enabled
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
796public virtual bool Enabled
3 writes to Enabled
System.Windows.Forms (3)
System\Windows\Forms\DataBinding\ICommandBindingTargetProvider.cs (3)
104Enabled = PreviousEnabledStatus.Value; 120Enabled = commandBackingField.CanExecute(CommandParameter); 127Enabled = Command?.CanExecute(CommandParameter) ?? false;
2 references to Enabled
System.Windows.Forms (2)
System\Windows\Forms\DataBinding\ICommandBindingTargetProvider.cs (2)
36/// Gets or sets the previous value of the <see cref="Enabled"/> property, so that it can be restored to 119PreviousEnabledStatus ??= Enabled;