예제 #1
0
파일: PlanForm.cs 프로젝트: mind0n/hive
		private void bExecuteCommand_Click(object sender, EventArgs e)
		{
			RemoteExecuteCommand cmd = new RemoteExecuteCommand();
			AddCommandTreeviewNode(cmd);
		}
예제 #2
0
		public override CommandNode Clone()
		{
			RemoteExecuteCommand rlt = new RemoteExecuteCommand { Command_Line = this.Command_Line };
			base.CopyChildren(rlt);
			return rlt;
		}