What are the limitations of WPF web browser control? Is it good enough for a real-life browser implementation? And is it a fully managed implementation?
|
|
The WPF WebBrowser control is just an interop layer hosting the IE ActiveX control. It should be very robust, and usable for a real-life browser (since it's really IE). It is not a managed implementation. Its main limitations are due to the fact that it's using an HwndHost internally. This means that it has the WPF/Native airspace issues, as well as some minor issues with event handling. |
||
|
|
|
|
Hi Hi, It is good enough for Real-life use, and I agree with Reeds view on the matter. Additionaly, If a person does not have certain IE files on their computer the control is rendered useless. Here are a few observed limitations I have found:
All in all, the control could be greatly improved, and to honest it would be fantastic to see the .NET team make a fully managed version of this component. Cheers, Kyle |
||
|
|
