Reputation: 4968
I want to add a button just next to the home button in Internet Explorer 9. When anyone clicks that button he should be able to see a menu that has different icons for different functionality.
How can I do it for Internet Explorer 9? I want to use C# for this. Any pointers are greatly appreciated.
Upvotes: 2
Views: 1029
Reputation: 244732
If you're looking for simplicity and value your time, Add-in Express is certainly worth a look.
To add a toolbar button to IE, all you'll have to do is write a handler for the button's Click
event in your code. You don't have to worry about editing the registry, COM objects, or querying interfaces yourself: all of that is taken care of for you automatically by Add-in Express. Their website is incredibly comprehensive and even offers several video tutorials explaining the process.
Alternatively, this CodeProject article looks like it might do what you want while still saving you from mucking about writing the code to do the dirty work yourself.
Upvotes: 1
Reputation: 15344
this link will help you
UPDATED:
You have to create registry entries explained in this Link
http://msdn.microsoft.com/en-us/library/bb735854%28VS.85%29.aspx#
Upvotes: 2