Top "Tabitem" questions

User Interface control in C# with WPF Framework that represents a selectable item inside a TabControl.

Dynamic TabControl in WPF MVVM

I started using WPF (in C#) some weeks ago and now i need help for some advanced use of tabcontrol. …

c# wpf xaml tabcontrol tabitem
How to remove the default margin on the content of a TabItem?

I'm using the TabControl class in WPF and I've noticed that the content of each TabItem has a default margin …

wpf tabcontrol margin tabitem
WPF: How to set background of TabItem?

How to set the background of TabItem? I tried the following code: <TabControl> <TabItem Header="Test" Background="…

wpf wpf-controls tabitem
select tabItem programmatically in WPF

I have different tabItems in a TabControl and each tabItem has some input fields. I am moving between the tabItems …

wpf tabcontrol tabitem
Handling WPF TabItems Visibility property

I have been reading about Visibility.Collapsed for TabItems. When the Visibility is set to Collapsed, the TabItem header is …

c# wpf visibility tabitem
Setting TabItem foreground color also sets the TabControl foreground color

I have a TabControl that I have restyled. The TabItem has a trigger that is fired when the TabItem is …

wpf styling tabitem
WPF: hiding a tab item in a tab control thats bound to an observable collection

I have a tab control bound to an observablecollection for dynamic tabs as follows: <TabControl ItemsSource="{Binding AllTabs}" SelectedIndex="{…

wpf mvvm tabcontrol hide tabitem
Adjusting TabItem width automatically to fill spaces?

I have a TabControl object with some TabItem objects inside. Now the sum of width of TabItem is not long …

c# wpf tabcontrol alignment tabitem
IsSelected property of WPF TabItem

I have the following code: <TabItem Name="tabItemGeneral"> <TabItem.Triggers> <Trigger Property="IsSelected" Value="True"&…

wpf tabitem
WPF/C#: How does one reference TabItems inside a TabControl?

I'm sure there is something simple that I am missing, but I must confess that at this point I am …

c# wpf tabcontrol tabitem