Not sure if this is a problem with the transition control or my code
I have a page with a menu on it and when i select an option I 'navigate' to the page by setting the content of the transistion control to the new page
sometimes i've noticed that the page does not display, infact the screen stays the same. If i minimise and then maximise the window, the page that should have been displayed is there
code looks something like this
I have a page with a menu on it and when i select an option I 'navigate' to the page by setting the content of the transistion control to the new page
sometimes i've noticed that the page does not display, infact the screen stays the same. If i minimise and then maximise the window, the page that should have been displayed is there
code looks something like this
/// <summary>
/// Add page to page collection
/// </summary>
/// <param name="content"></param>
/// <param name="title"></param>
private void addContent(UserControl content, string title)
{
ContentControl page = new ContentControl();
page.Content = content;
contentPages.Add(page);
mainContent.Transition =
null //took transition out for now
mainContent.Content = page;
addBreadcrumb(title,page);
}