How to load a button in taskbar through c#
-
I want to load a button in taskbar, Such that I can give some options to user for selecting. For example, if there is the button of open office 2.1 Quickstarter, and if I rightclick it, there comes some options like Text Document, spreadsheet, Presentation, Drawing, database etc., In the same way, If I right click the button which is loaded through my program, therre should come some options for user to select. How to do these in c#?
-
I want to load a button in taskbar, Such that I can give some options to user for selecting. For example, if there is the button of open office 2.1 Quickstarter, and if I rightclick it, there comes some options like Text Document, spreadsheet, Presentation, Drawing, database etc., In the same way, If I right click the button which is loaded through my program, therre should come some options for user to select. How to do these in c#?
svt gdwl wrote:
I want to load a button in taskbar
Did you try NotifyIcon?
svt gdwl wrote:
I rightclick it, there comes some options like Text Document, spreadsheet, Presentation, Drawing, database etc.,
This can be achieved through the ContextMenuStrip property of NotifyIcon. First you can have a look into this aritcle[^]. :)
Regards, Arindam Sinha MyBlog - http://arindamsinha.wordpress.com/ Please give your feedback on this answer.