Rank: Advanced Member Groups: Member
Joined: 12/30/2013 Posts: 68
|
Your control is great in that it duplicates chrome (mostly) and gives me many additional options. However, it is very slow in it's initial load. I understand from other posts that this is because the dll is loaded into memory on the initial start.
So I have 3 questions regarding this issue. 1) Is going to be fixed soon/ 2) Will using the multiple dll build help this issue? 3) Is there some Loading message that can be applied to the webview that states the website is loading, please wait.
Thank you for you help.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,196
|
Hi,
The multi-DLL build will increase load time considerably. The WebView does not have any built-in loading message since it is just the web page area itself. However you can handle IsLoadingChanged event to display your own "website is loading, please wait..." message. Inside the event handler you can check WebView.IsLoading property. If it is true, you can display your prompt message, if it is false, you can clear it.
Thanks!
|