Table of Contents
FixedContentTemplate Property

Gets or sets a fixed DataTemplate to be applied to all tab items content.

Syntax
 public DataTemplate FixedContentTemplate { get; set; }
Remarks

When this property is set, the TabControl creates a single instance of the FixedContentTemplate and does not switch or update it when user switches tab items. If you wish to display different contents using this property, you must handle the TabControl's SelectionChanged event and then update the contents in this template.

See Also