Created
January 4, 2012 20:58
-
-
Save cyberzed/1562101 to your computer and use it in GitHub Desktop.
Could do but...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ControlTemplate TargetType="TabItem"> | |
| <Grid x:Name="root" | |
| Margin="0,0,15,0"> | |
| <ContentControl Content="{TemplateBinding Header}" FontSize="26.667"> | |
| <ContentControl.Foreground> | |
| <SolidColorBrush Color="{DynamicResource Gray11}" /> | |
| </ContentControl.Foreground> | |
| </ContentControl> | |
| </Grid> | |
| </ControlTemplate> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <TabItem.Header> | |
| <StackPanel Orientation="Horizontal"> | |
| <TextBlock Text="moo" /> | |
| <TextBlock Text="cow" /> | |
| </StackPanel> | |
| </TabItem.Header> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment