일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
- 자바
- MS-SQL
- MSsql
- TextBox
- Eclipse
- asp.net
- jsp
- MANTIS
- WebView
- scrollView
- Apache Lucene
- Java
- 웹 서비스
- C#
- 안드로이드
- 컬럼명
- varags
- Web Service
- 이클립스
- 자바스크립트
- STS
- Bootstrap
- Android
- html
- decompiler
- SpringSource Tool Suite
- Maven
- 웹뷰
- Redirect
- javascript
- Today
- Total
목록C# | ASP.NET/C# (23)
bboks.net™
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..
Socket의 SetSocketOption 메소드를 사용하고 다시 바인드를 시키면 됨 socket.SetSocketOption(SocketOptionLevel.Socket,SocketOptionName.ReuseAddress, true); [출처] Can't Re-bind a socket to an existing IP/Port Combination
sealed class modifier 클래스를 더이상 상속할수 없게 만들고 싶은때 사용 [attributes] sealed class identifier [class-base] class-body [;] const 필드나 로컬 변수의 선언을 변경하는데 사용한다. const 로 선언된 필드나 로컬 변수는 변경될 수 없음을 지정한다. [attributes] [modifiers] const type declarators; readonly const 와 역활은 같지만 초기화방법이 조금 차이가 있다. 선언과 동시에 초기화 할 수도 있고 생성자등에서 초기화가 가능한다. 즉 const는 compile time의 constant이고 readonly는 runtime에 constant로 사용될 수 있다. [출처] con..
MDI를 사용하다 보면 자식 폼에서 부모 MDI에 접근이 필요한 경우가 있다. C#에서는 MdiParanet라는 변수를 제공하는 이는 폼의 MDI 부모의 레퍼런스이다. 사용 방법은 MDI 부모폼의 이름이 MDIMain이라고 가정했을때 MDIMain parent = (MDIMain)this.MdiParent; parent.SomeMethod(); [참고] How to Access MDI Parent Forms From MDI Child Form