Exemplo n.º 1
0
 private void EditButton_Click(object sender, EventArgs e)
 {
     var popup = new VarObjectSelect();
     popup.ShowDialog();
     if (popup.DialogResult == DialogResult.OK)
     {
         OpUtils.SetOperandProperty(Operand, GUIDProperty, popup.GUIDResult);
     }
     Master.SignalOperandUpdate();
 }
Exemplo n.º 2
0
        private void EditButton_Click(object sender, EventArgs e)
        {
            var popup = new VarObjectSelect();

            popup.ShowDialog();
            if (popup.DialogResult == DialogResult.OK)
            {
                OpUtils.SetOperandProperty(Operand, GUIDProperty, popup.GUIDResult);
            }
            Master.SignalOperandUpdate();
        }