문제

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.

도움이 되었습니까?

해결책

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#

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top