CmisSync.TransmissionWindow.Controller_ShowWindowEvent C# (CSharp) 메소드

Controller_ShowWindowEvent() 개인적인 메소드

private Controller_ShowWindowEvent ( ) : void
리턴 void
        private void Controller_ShowWindowEvent() {
            Dispatcher.BeginInvoke((Action)delegate {
                Show();
                Activate();
                BringIntoView();
                if (WindowState == System.Windows.WindowState.Minimized) {
                    WindowState = System.Windows.WindowState.Normal;
                }
            });
        }