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