Closed
Description
I am noticing a stability issue when setting the address after creating our mainview control. If an address is set directly after creating a new mainview and browser the browser fails to load the address.
Example:
list.Add(new MainView
{
DataContext = new MainViewModel("about:blank")
});
list[0].Address = "http://www.kylemcfarland.com";
list.Add(new MainView
{
DataContext = new MainViewModel("about:blank")
});
list[1].Address = "http://www.google.com";