Rank: Member Groups: Member
Joined: 2/3/2016 Posts: 17
|
Hi,
I am using WebControl in a Winform called ChromeBrowser. In the the web control I am pointing to a url. So now I am instantiating this ChromeBrowser form from a parent form as shown below.
public Views.ChromeBrowser browserFeed;
public void ConstructBrowserFeed() { browserFeed = new Views.ChromeBrowser { Dock = DockStyle.Fill, TopLevel = false };
browserFeed.Show(); panel.Controls.Add(browserFeed); panel.Show(); }
This shows the web page fine, but when I minimize the parent form and maximize, web page is not loading. Parent form loads but the child form (ChromeBrowser) doesn't load. It remains blank for a while and then loads. Sometimes, it doesn't load at all. I didn't find this issue when am using .net WebBrowser. Can you suggest on this?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,229
|
Hi, Can you create a test project demonstrating the problem and send the test project to us? http://www.essentialobjects.com/forum/test_project.aspxThanks!
|