Web Browser Control question?

Is it possible to pre-load a url into a web browser control before it is made visible with a click or checked event trigger?

No. It will only load the URL when it is visible. What you could do is place something overtop the control so it is always visible. Or maybe use Opacity instead. You should be able to preload it when the Opacity is 0.

Ok I did try to put a black rectangle over it to eclipse it but when I played it in designer the browser came to the forefront anyway.

The WebBrowser control in standard Windows Desktop applications will always be on top. I haven’t found a way around that yet. This however will not be an issue in the actual apps. You won’t really be able to test what you’re building here in the simulator.

Ok I went with opacity 0 and that seems to work in the app. Thanks!