// // // // // $Revision: 1965 $ // using System; namespace ICSharpCode.Core { public abstract class AbstractMenuCommand : AbstractCommand, IMenuCommand { bool isEnabled = true; public virtual bool IsEnabled { get { return isEnabled; } set { isEnabled = value; } } } }