예제 #1
0
        private void btnFindSpellAction_Click(object sender, EventArgs e)
        {
            SelectSpell dlg = new SelectSpell();

            if (dlg.ShowDialog() == DialogResult.OK)
            {
                txtActionData.Text = dlg.GetText();
            }
        }
예제 #2
0
 private void btnFindSpellTrigger_Click(object sender, EventArgs e)
 {
     SelectSpell dlg = new SelectSpell();
     if (dlg.ShowDialog() == DialogResult.OK)
     {
         txtTriggerData.Text = dlg.GetText();
     }
 }