This question is locked. New answers and comments are not allowed.
I need to load the contents of a RadTabItem dynamically from a url. How do I do?
RadTabItem itemToAdd =
new
RadTabItem()
{
Header = _Header
};
//itemToAdd.Content = Application.LoadComponent(new Uri("",UriKind.Relative),"assemlyName;component/test.xaml");
itemToAdd.Content =
new
Uri(
"/Pages/ThatPage.xaml"
, UriKind.Relative);
tabAcoes.Items.Add(itemToAdd);
}