コード例 #1
0
ファイル: PlanForm.cs プロジェクト: mind0n/hive
		private void bExecuteCommand_Click(object sender, EventArgs e)
		{
			RemoteExecuteCommand cmd = new RemoteExecuteCommand();
			AddCommandTreeviewNode(cmd);
		}
コード例 #2
0
ファイル: RemoteExecuteCommand.cs プロジェクト: mind0n/hive
		public override CommandNode Clone()
		{
			RemoteExecuteCommand rlt = new RemoteExecuteCommand { Command_Line = this.Command_Line };
			base.CopyChildren(rlt);
			return rlt;
		}