Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 자바
- Eclipse
- SpringSource Tool Suite
- 컬럼명
- MSsql
- varags
- C#
- WebView
- 웹뷰
- Apache Lucene
- Web Service
- javascript
- 자바스크립트
- jsp
- html
- 웹 서비스
- MS-SQL
- Redirect
- decompiler
- Java
- Bootstrap
- Maven
- 안드로이드
- 이클립스
- STS
- MANTIS
- asp.net
- TextBox
- Android
- scrollView
Archives
- Today
- Total
목록C# Tray (1)
bboks.net™
C# 윈폼 트레이로 최소화 하기
1. 빈 폼을 만든다. 2. 폼에 NotifyIcon 컨트롤을 추가한다. 3. 폼에 Resize 이벤트 추가 4. Resize 이벤트에 아래 코드 입력 private void Form1_Resize(object sender, EventArgs e) { //notifyIcon1.BalloonTipTitle = "Monimize to Tray App"; //notifyIcon1.BalloonTipText = "You have successfully minimized you form"; if (FormWindowState.Minimized == this.WindowState) { notifyIcon1.Visible = true; this.Hide(); } else if (FormWindowState.Norma..
C# | ASP.NET/C#
2013. 5. 23. 16:16