private void btnSelBtn_Click(object sender, EventArgs e) { switch (cboCondition.SelectedValue.ToString()) { case "2": string[] row = new string[3] { "iID", "sNpcName", "sIntroduction" }; RadioList rl = new RadioList("NpcData", row, txtiArg1Edit, txtiArgName, "1"); rl.ShowDialog(); break; case "11": row = new string[3] { "iItemID$0", "sItemName$1", "sTip$5" }; rl = new RadioList("ItemData", row, txtiArg1Edit, txtiArgName, "1"); rl.ShowDialog(); break; case "7": FrmRound fr = new FrmRound(txtiArg1Edit, txtiArgName); fr.ShowDialog(); break; } }
private void 回合信息ToolStripMenuItem_Click(object sender, EventArgs e) { FrmRound fr = new FrmRound(null, null); fr.Show(); }
private void tsmRound_Click(object sender, EventArgs e) { FrmRound fr = new FrmRound(null, null); fr.Show(); }
private void button1_Click(object sender, EventArgs e) { FrmRound fr = new FrmRound(txtiArg2Edit, txtiAgr2Name); fr.ShowDialog(); }