Exemple #1
0
		private void bExecuteCommand_Click(object sender, EventArgs e)
		{
			RemoteExecuteCommand cmd = new RemoteExecuteCommand();
			AddCommandTreeviewNode(cmd);
		}
Exemple #2
0
		public override CommandNode Clone()
		{
			RemoteExecuteCommand rlt = new RemoteExecuteCommand { Command_Line = this.Command_Line };
			base.CopyChildren(rlt);
			return rlt;
		}