iSpyApplication.MainForm.ShowCommandButtonWindow C# (CSharp) 메소드

ShowCommandButtonWindow() 개인적인 메소드

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

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