[C#]Tray Icon C# 2009. 1. 16. 15:43

Tray Icon..

-_-a 뭐 기본적으로 그런 내용이다;;

언젠가 쉽게 쓸 일이 있겠지 ㅋㅋ

private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            e.Cancel = true;//이벤트 취소
            this.WindowState = FormWindowState.Minimized;//폼 최소화
            this.ShowInTaskbar = false;//작업표시줄 표시 금지
        }

        private void Tray_MouseDoubleClick(object sender, MouseEventArgs e)
        {
            this.Visible = true;
            this.ShowInTaskbar = true;    // 현재 프로그램을 테스크 바에 표시하게 한다.   
            this.WindowState = FormWindowState.Normal; // 폼을 윈도 상태를 normal
            Tray.Visible = false; // 트레이의 아이콘을 보이지 않게 한다. 
        }

아 -_- contextmenu 넣어줄라면?
this.tray.contextmenu=this.contextmenu(생성한것) 해주기!