Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- JavaScript
- DICTIONARY
- Photo
- Nas
- ODBC
- linkhard
- 사진용어
- 로터스 노츠
- domino
- 사진
- glossary
- Attribute
- 노출
- 자바스크립트
- generic
- 신혼여행
- 링크하드
- minipresso
- C#
- 자작 콘솔
- Lotus Notes
- Lotus Script
- ASP.NET
- 에쿠스 콘솔박스
- 뉴칼레도니아
- AS
- 용어정리
- SQL
- 커피
- 사진강좌
Archives
- Today
- Total
목록mouseMove (1)
바라기의 이야기
WinForm의 ListBox에서 툴팁표시
1. 툴팁을 넣으려고 하는 Form에 ToolTip 컨트롤을 삽입. --> ListToolTip 2. 이벤트 핸들러 추가 ( Onload 등 ) this.lbListBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.lbListBox_MouseMove); 3. 처리 메소드 추가 private void lbListBox_MouseMove (object sender, MouseEventArgs e) { int index = lbListBox.IndexFromPoint(e.Location); if (index != -1 && index < lbListBox.Items.Count) { if ( ListToolTip .GetToolTip(lbList..
Develop/.NET
2012. 2. 28. 22:02