This question is locked. New answers and comments are not allowed.
I have tested the sample "How to Add Close Button to the Tab Headers" and all is ok but i have 2 questions:
1) how can i change the image of the header
2) how can i call to a Page from the tabitems added. I've tried with:
...
TabItemModel x = new TabItemModel();
x.Title = "TITLE";
x.Content = new Page1();
tabItemsModel.Add(x);
...
public class TabItemModel
{
public String Title
{
get;
set;
}
public Object Content
{
get;
set;
}
}
no success
1) how can i change the image of the header
2) how can i call to a Page from the tabitems added. I've tried with:
...
TabItemModel x = new TabItemModel();
x.Title = "TITLE";
x.Content = new Page1();
tabItemsModel.Add(x);
...
public class TabItemModel
{
public String Title
{
get;
set;
}
public Object Content
{
get;
set;
}
}
no success