Minimize() 공개 메소드

public Minimize ( ) : void
리턴 void
예제 #1
0
파일: MenuWidget.cs 프로젝트: RAOF/smuxi
        protected void OnCloseChatActionActivated(object sender, EventArgs e)
        {
            Trace.Call(sender, e);

            try {
                ChatViewManager.CurrentChatView.Close();
                if (Frontend.IsMacOSX && ChatViewManager.Chats.Count == 1)
                {
                    ChatViewManager.Minimize();
                }
            } catch (Exception ex) {
                Frontend.ShowException(Parent, ex);
            }
        }