// // // // // $Revision: 1965 $ // using System; namespace ICSharpCode.Core { public abstract class AbstractComboBoxCommand : AbstractCommand, IComboBoxCommand { bool isEnabled = true; public virtual bool IsEnabled { get { return isEnabled; } set { isEnabled = value; } } public override void Run() { } } }