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