MonoDevelop.Components.Commands.CommandManager.LockAll C# (CSharp) 메소드

LockAll() 공개 메소드

Disables all commands
public LockAll ( ) : bool
리턴 bool
		public bool LockAll ()
		{
			guiLock++;
			if (guiLock == 1) {
				foreach (ICommandBar toolbar in toolbars)
					toolbar.SetEnabled (false);
				return true;
			} else
				return false;
		}