Rank: Newbie Groups: Member
Joined: 10/6/2016 Posts: 7
|
Hi,
I'm using your EO.WebBrowser (20.0.53.0) to displaying some website in my C# / WPF programm. My issue is that the browser always displaying over all other WPF controls.
Is it possible to choice in which position (in the visual tree) the WebBrowser should be displayed ? If not, how can I fix my problem ?
Thanks in advance !
Regards, Virgile Wicky
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,217
|
Hi,
There is no way for you to render other WPF control over the WebControl. This has nothing to do with position of the WebControl in the visual tree, the root of the problem is WebControl has its own window and in WPF, non-windowed control can not render over windowed control. This is a well known limitation of WPF that is commonly referenced as "airspace issue", there is no simple solution to this isssue.
Thanks!
|