|
<tabView:SfTabView Items="{Binding Items}" VisibleHeaderCount="-1" >
</tabView:SfTabView> |
|
public TabItemCollection Items
{
get { return items; }
set
{
items = value;
OnPropertyChanged("Items");
}
}
public ViewModel()
{
Items = new TabItemCollection();
Items.Add(new SfTabItem { Content = new TabPage2().Content, Title = "Page1" });
Items.Add(new SfTabItem { Content = new TabPage3().Content, Title = "Page2" });
Items.Add(new SfTabItem { Content = new BackDropPage().Content, Title = "BacDropPage" });
} |
Hello.
Is there a sample application for "ContentPage support for TabItem"? If the application is available, can you share it?