Top "Tabitem" questions

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

How do I bind a TabControl to a collection of ViewModels?

Basically I have in my MainViewModel.cs: ObservableCollection<TabItem> MyTabs { get; private set; } However, I need to somehow …

c# wpf mvvm tabcontrol tabitem
How to programmatically select a TabItem in WPF TabControl

I would like to know how to select a specific TabItem in a WPF TabControl. I tried these bellow but …

wpf tabcontrol tabitem
In C# WPF, why is my TabControl's SelectionChanged event firing too often?

I have a tabbed GUI with each tab containing a Frame. In one of these Frames there is a DataGrid. …

c# wpf tabcontrol tabitem
WPF - TabItem Background color changes when tabitem selected or hover over

I set the Background color of the tabitem in the xaml to RED, but when i run it and hover …

wpf wpf-controls styles tabcontrol tabitem
TabItem in a separate XAML

Is it possible to put a TabItem into a separate XAML and reference something like this: <TabControl> <…

wpf tabitem
TabControl.ItemTemplate: set TabItem.Header.Text to a MultiBinding with StringFormat

How do I set the TabItem.Header to bindings taken from few fields, each binding shown in a different size, …

wpf binding header tabcontrol tabitem
Load UserControl in TabItem

I have a Usercontrol(TabUserControl) which contains a TabControl. The Viewmodel of that UserControl loads ab Observable collection of TabItems. …

wpf mvvm user-controls tabitem
How To Wpf TabItem Style HeaderTemplate Binding?

How To do Wpf TabItem Style HeaderTemplate Binding? Code: <TabControl x:Name="tabCtrlMain" ItemsSource="{Binding Items}" > <TabControl.…

wpf xaml styles tabitem
Changing the text color of the selected tabItem in a TabControl?

In the second code there is a textBlock with the text "Mina övningar" How can I change the text color …

wpf tabcontrol tabitem
WPF: TabControl and dynamic TabItems

I am trying to create a GUI for my current project using WPF in C#. I would like to have …

c# wpf tabcontrol tabitem