PKHeX.SAV_Inventory.B_DisplayTMHM_Click C# (CSharp) Method

B_DisplayTMHM_Click() private method

private B_DisplayTMHM_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void B_DisplayTMHM_Click(object sender, EventArgs e)
        {
            // Store Current Items back to the save file
            saveBag(sender);
            popTMHM();
            if (ModifierKeys == Keys.Alt && Util.Prompt(MessageBoxButtons.YesNo, String.Format("Warning: Adding all {0} is dangerous.", B_DisplayTMHM.Text), "Continue?") == DialogResult.Yes)
                giveAll(tmhm_val, 1);
        }
        private void B_DisplayMedicine_Click(object sender, EventArgs e)