How to add toast style popup to my application?

前端 未结 4 1590
既然无缘
既然无缘 2020-12-04 18:19

I have created an application that runs in the taskbar. When a user clicks the application it pops up etc. What I would like is similar functionality to that in MSN when one

4条回答
  •  难免孤独
    2020-12-04 19:02

    There's support for notification balloons in Win32 (I'm not a .net programmer), with some useful properties as old new thing explains.

    There's also a system wide semaphor which you should lock to prevent more than one popup from any application appearing at once.

    There's a a couple of pages on the toast semaphor on msdn - the toast semaphor and in the broader context of usability. I also came across some example code to use the balloon api from C# while looking, but can't vouch for it.

提交回复
热议问题