문제

I just start learning WPF, is that possible I can create an IE toolbar by using WPF, if so, is there any document about how to do that?

Thanks a lot.

도움이 되었습니까?

해결책

You could technically implement a toolbar with WPF but there is a potential issue with this or other approaches that uses managed code. There can only be one version of the .NET CLR loaded into the IE process so if you need .NET 3.5 and .NET 1.0 has been loaded you could be in trouble.

You can implement the COM interfaces required to create an IE toolbar with WPF, and you might want to look at some WinForms examples for the basics.

Products like Add-in Express claim to make programming IE extensions with managed code easier and safer.

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