drag and drop on NotifyIcon in tray in C#

2020-02-05 05:44发布

I am trying to create a C# application that runs in tray where I can drop files on it's icon. Is there any way to get the path of the file dropped on the System Tray icon? System.Windows.Forms.NotifyIcon does not have any events related to drag and drop.

3条回答
该账号已被封号
2楼-- · 2020-02-05 05:51

It has az example, but it's not fully and written in C++ :(

DragnDropOnTrayIcon

查看更多
唯我独甜
3楼-- · 2020-02-05 05:57

it's not possible to do this, the easy way. You can show a dummy Form, if the cursor is in a special area near the notifyicon. The dummy Form can get the filepath of the droped file.

查看更多
趁早两清
4楼-- · 2020-02-05 06:00

It actually is possible to do with a slightly hacky method. Fluffy App does this for its file uploader. It uses Spifftastic which uses a pretty neat little method to identify the location of the tray icon. Then a transparent window is placed over the location of the icon and used as the actual drop target, but to the end user it all appears to be dropping the file on the icon.

查看更多
登录 后发表回答