.net - How can I put WebBrowser display behind my control? -
.net - How can I put WebBrowser display behind my control? -
i trying create menu on top of webbrowser control, when user select it, tell webbrowser go centain page.
so did like:
<grid x:name="root"> <webbrowser name="_webbrowser" source="http://google.ca" grid.column="0" grid.row="0"></webbrowser> <expander name="expander1" horizontalalignment="left" verticalalignment="stretch" width="250" expanddirection="right" isexpanded="true" grid.column="0" grid.row="0">
far know, lastly define command should on top...
but strange, webbrowser display on top....and covers expander (menu). tried set webbrowser within carvas or button lol webbrowser still display on top....
i hope not bug in .net 3.5.....
the short reply limitation of wpf.
the webbrowser
command managed wrapper around windows com component, has own window handle. reason, you're not able draw on it.
more details: wpf 3.5 webbrowser command , zindex
.net wpf xaml .net-3.5 browser
Comments
Post a Comment