What's the programmatic way (ie not using styles as in this question, but using code) to hide the TabControl header? I'll be glad for a snippet.
TabControl
Style s = new Style(); s.Setters.Add(new Setter(UIElement.VisibilityProperty, Visibility.Collapsed)); tabControl.ItemContainerStyle = s;
1.4m articles
1.4m replys
5 comments
57.0k users