I have a WPF application in which I have an embedded web browser control. I want to show an animation over the web browser at a certain time, but the problem is that the WPF controls, when kept over the web browser are not visible.
Is there any way to show my user control over the web browser?
Please answer me this first,
Is this Web Browser control the
WPF Web BrowserControl orWinformwebbrowser control hosted inWinFormHost?For any WPF control to show animation over it, did you explore …
GridorCanvasand then placing an stretchedBorder(which has running animation in it) as the last child of the grid/canvas?Adornerwith constantly changing drawing context to simulate animations?Popupwith animation, whose static placement is done (bound to control’s absolute left, top positions and actual height & width properties) over the control?Try the transparent popup approach for web browser control …
One of these will surely work in your case.