FECipherVit.FECipherVit.编辑卡组ToolStripMenuItem_Click C# (CSharp) Method

编辑卡组ToolStripMenuItem_Click() private method

private 编辑卡组ToolStripMenuItem_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void 编辑卡组ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            using (DeckConstruction DeckConstruction = new DeckConstruction())
            {
                DeckConstruction.Owner = this;
                DeckConstruction.ShowDialog();
            }
        }
FECipherVit