'Declaration Public Property PostTabItemContentTemplate As DataTemplate
public DataTemplate PostTabItemContentTemplate {get; set;}
Class Window1 Public Sub New() ' This call is required by the Windows Form Designer. InitializeComponent() ' Add any initialization after the InitializeComponent() call. ' Set the content of the pre-tab item area. Me.XamTabControl1.PreTabItemContent = "Pre tab area content" ' Set the DataTemplate for the pre-tab item area. Me.XamTabControl1.PreTabItemContentTemplate = TryCast(Me.TryFindResource("PreTabItemTemplate"), DataTemplate) ' Set the content of the post-tab item area. Me.XamTabControl1.PostTabItemContent = "Post tab area content" ' Set the DataTemplate for the post-tab item area. Me.XamTabControl1.PostTabItemContentTemplate = TryCast(Me.TryFindResource("PostTabItemTemplate"), DataTemplate) End Sub
public partial class Window1 : Window { public Window1() { InitializeComponent(); // Set the content of the pre-tab item area. this.xamTabControl1.PreTabItemContent = "Pre tab area content"; // Set the DataTemplate for the pre-tab item area. this.xamTabControl1.PreTabItemContentTemplate = this.TryFindResource("PreTabItemTemplate") as DataTemplate; // Set the content of the post-tab item area. this.xamTabControl1.PostTabItemContent = "Post tab area content"; // Set the DataTemplate for the post-tab item area. this.xamTabControl1.PostTabItemContentTemplate = this.TryFindResource("PostTabItemTemplate") as DataTemplate; }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2