C\#어떻게 해야만 창 을 트 레이 로 최소 화 할 수 있 습 니까?

private void Form1_Resize(object sender, System.EventArgs e) {     if (this.WindowState == FormWindowState.Minimized) {         this.Visible = false;         this.notifyIcon1.Visible = true;     } } private void notifyIcon1_Click(object sender, System.EventArgs e) {     this.Visible = true;     this.WindowState = FormWindowState.Normal;     this.notifyIcon1.Visible = false; }

좋은 웹페이지 즐겨찾기