I have a tabcontrol in my window, inside each tabitem I want to have a different page.
I can achieve this by making a Frame inside the TabItem and in the behind code use for example:
frame1.Content = new Pages.MyPage()
How can I do the same thing in XAML?
1 Answer