iSpyApplication.MainForm.ShowCommandButtonWindow C# (CSharp) Method

ShowCommandButtonWindow() private method

private ShowCommandButtonWindow ( ) : void
return void
        internal void ShowCommandButtonWindow()
        {
            if (cmdButtons != null)
            {
                cmdButtons.Close();
                cmdButtons.Dispose();
            }

            cmdButtons = new CommandButtons();
            cmdButtons.Show(this);
        }
MainForm