| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- Header
- Gitea GPG
- Column
- gitea설치
- DataTable
- 깃티설치
- 젤리핀
- gfd
- Re
- LogonUI
- 트레이아이콘
- 시놀로지깃티설치
- Resident
- gitea
- Capcom
- synology
- CmdKey
- 시놀로지
- jellyfin
- 깃티
- Gitea 설치
- Resident Evil
- DataGridView
- checkbox
- unable to boot the simulator
- toroisegit
- 깃티gpg
- theme
- trayicon
- c#
Archives
- Today
- Total
목록NotifyIcon (1)
C O D I N G
TrayIcon 좌클릭, 우클릭 메뉴 가능하게 하기
TrayIcon에서 우클릭했을떄랑, 좌클릭했을때 ContextMenu를 다르게 보는 방법 private void notifyIcon1_MouseClick(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) { notifyIcon1.ContextMenuStrip = this.contextMenuStrip1; System.Reflection.MethodInfo methodInfo = typeof(NotifyIcon).GetMethod("ShowContextMenu", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic); methodInfo..
Programming/C#
2016. 4. 25. 16:57