private void allCommandsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AllCommandsForm acf = new AllCommandsForm(this);

            acf.ShowDialog();
        }
        private void allCommandBtn_Click(object sender, EventArgs e)
        {
            AllCommandsForm acf = new AllCommandsForm(this);

            acf.ShowDialog();
        }
        private void InitAllCommandsForm()
        {
            AllCommandsForm acf = new AllCommandsForm(this);

            acf.ShowDialog();
        }