Tagged Questions
1
vote
1answer
259 views
erriding the selected background color for a themed tabitem
I'm trying to do something which I'd think would be pretty simple, but is turning out to be rather complicated.
I'm working with a TabControl that has already been styled by a theme in an included ...
0
votes
1answer
1k views
WPF: Problem applying style to custom TabItem Header through ControlTemplate and ContentPresenter.Resources
I am trying to write my own control template for a TabItem Header, and have got the basic layout to work but now I wish to apply styling to the content of the Header, for example to manipulate the ...
2
votes
1answer
3k views
TabItem header click
I have defined a control template/style for my tab items as follows:
<Style x:Key="TabItemStyle" TargetType="{x:Type TabItem}">
<Setter Property="Header" Value="{Binding ...
0
votes
1answer
1k views
Is there a way to template a RadioButton so it should TabItem styled
I've tried:
<UniformGrid DockPanel.Dock="Top" Columns="2" Rows="1">
<UniformGrid.Resources>
<Style TargetType="RadioButton">
<Setter Property="Template">
...
0
votes
1answer
2k views
Dynamically add tabs to tab control
I am trying to dynamically add tabs to tab control. I have control template in resources:
<ControlTemplate x:Key="memoTab" TargetType="{x:Type TabItem}">
<TabItem Header="Memo">
...
1
vote
0answers
155 views
Migrate style from TabItem to TabHeader
Good day!
I have a TabControl with TabItems that have been customized via a control template. This control template specifies a trigger whereby on mouseover, the content of tab header grows ...
0
votes
1answer
900 views
Silverlight TabItem template not working correctly
In a SL4 application i need to restyle my TabItems (actually add a button in the header).
So i took the TabItem's control template from here and added the functionality i wanted.
This seems to work ...
1
vote
1answer
2k views
Styling TabItem when populated with ItemsSource
I'm using a WPF Tabcontrol populated with a collection using Itemssource.
<TabControl x:Name="_tabControl" ItemsSource="{Binding TabViewModelList}">
...
1
vote
1answer
4k views
Create TabItems with differing content at runtime based on templates in WPF
I'm writing an application with WPF and part of it involves managing for the user various files which are used configure custom, in-house devices. I need to be able to manipulate different types of ...
0
votes
2answers
2k views
Customized Content of TabItem WPF
I currently have a custom TabItem which has a custom header, which is defined as part of a Style like this:
<Setter Property="Template">
<Setter.Value>
<ControlTemplate ...