예제 #1
0
        public ReceiveResponseForm(Action originalAction)
        {
            InitializeComponent();

            _originalAction = originalAction as ReceiveResponse;
            _tempAction = originalAction.GetCopy() as ReceiveResponse;
        }
예제 #2
0
        public override void Set(Action action)
        {
            base.Set(action);

            this.IsPerformGoto = ((ReceiveResponse)action).IsPerformGoto;
            this.GotoLabelId = ((ReceiveResponse)action).GotoLabelId;
        }
예제 #3
0
 public override void Set(Action action)
 {
     base.Set(action);
     this.LabelId = ((Label) action).LabelId;
 }