![]() |
MahApps.Metro DataGrid Style |
Check out the pull request to MahApps.Metro or my branch on GitHub.
Adventures in .NET and other stuff
![]() |
MahApps.Metro DataGrid Style |
![]() |
MahApps.Metro DataGrid Style |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Windows; | |
using System.Windows.Controls; | |
using System.Windows.Data; | |
using System.Windows.Media; | |
using System.Windows.Shapes; | |
namespace MyApp.Wpf | |
{ | |
public class StringToIconConverter : IValueConverter | |
{ | |
private static readonly ResourceDictionary _iconResource; | |
private static readonly Dictionary<string, Geometry> _pathData; | |
static StringToIconConverter() | |
{ | |
if (!DesignerProperties.GetIsInDesignMode(new DependencyObject())) | |
{ | |
_iconResource = new ResourceDictionary | |
{ | |
Source = new Uri("pack://application:,,,/Resources/Icons.xaml") | |
}; | |
_pathData = new Dictionary<string, Geometry>(); | |
} | |
} | |
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) | |
{ | |
var resourceKey = value as string; | |
return string.IsNullOrWhiteSpace(resourceKey) ? null : GetIconPathData(resourceKey); | |
} | |
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) | |
{ | |
throw new NotImplementedException(); | |
} | |
/// <summary> | |
/// Try and get the icon path data for the given resource key. | |
/// </summary> | |
/// <remarks> | |
/// This method assumes Icons.xaml from MahApps.Metro is used, and that | |
/// the icon resource is a Canvas containing a Path. | |
/// </remarks> | |
/// <param name="resourceKey">The resource key for the icon.</param> | |
/// <returns>the icon path data if found, otherwise null.</returns> | |
private static object GetIconPathData(string resourceKey) | |
{ | |
if (!DesignerProperties.GetIsInDesignMode(new DependencyObject())) | |
{ | |
Geometry iconPathData; | |
if (!_pathData.TryGetValue(resourceKey, out iconPathData)) | |
{ | |
Canvas iconCanvas = _iconResource[resourceKey] as Canvas; | |
if (iconCanvas != null) | |
{ | |
Path iconPath = iconCanvas.Children.Count > 0 ? iconCanvas.Children[0] as Path : null; | |
if (iconPath != null) | |
{ | |
iconPathData = iconPath.Data; | |
} | |
} | |
_pathData.Add(resourceKey, iconPathData); | |
} | |
return iconPathData; | |
} | |
return null; | |
} | |
} | |
} |
<DataTemplate x:Key="MyDataTemplate"> | |
<Grid> | |
<Grid.ColumnDefinitions> | |
<ColumnDefinition Width="40"/> | |
</Grid.ColumnDefinitions> | |
<Path Data="{Binding Icon, Converter={StaticResource stringToIcon}}" Stretch="Uniform" Width="28" Height="28" | |
Fill="{Binding RelativeSource={RelativeSource AncestorType=ListBoxItem, Mode=FindAncestor}, Path=Foreground}" /> | |
</Grid> | |
</DataTemplate> |
![]() |
CodePlex Tabs |
![]() |
Azure Tabs |
WPF Style |
<Style x:Key="AzureTabItem" TargetType="{x:Type TabItem}"> | |
<Setter Property="BorderBrush" Value="{DynamicResource AccentColorBrush}"/> | |
<Setter Property="Template"> | |
<Setter.Value> | |
<ControlTemplate TargetType="TabItem"> | |
<StackPanel> | |
<Border x:Name="border" BorderBrush="{TemplateBinding BorderBrush}" | |
Padding="12,2,24,2" | |
BorderThickness="0,0,0,4" | |
Margin="2,2,2,0" | |
SnapsToDevicePixels="True"> | |
<Border.Style> | |
<Style TargetType="Border"> | |
<Setter Property="Background"> | |
<Setter.Value> | |
<SolidColorBrush Color="{DynamicResource Gray5}"/> | |
</Setter.Value> | |
</Setter> | |
</Style> | |
</Border.Style> | |
<Label x:Name="root" FontSize="15"> | |
<Label.Style> | |
<Style TargetType="Label"> | |
<Setter Property="Foreground"> | |
<Setter.Value> | |
<SolidColorBrush Color="{DynamicResource BlackColor}" /> | |
</Setter.Value> | |
</Setter> | |
</Style> | |
</Label.Style> | |
<ContentPresenter ContentSource="Header" RecognizesAccessKey="True" /> | |
</Label> | |
</Border> | |
<Canvas Height="10" Width="20" x:Name="arrow" Margin="25,0,0,0" | |
HorizontalAlignment="Left" SnapsToDevicePixels="True"> | |
<Path Data="M 0 0 H 20 L 10 10 Z" | |
StrokeThickness="0" | |
Fill="{DynamicResource AccentColorBrush}"/> | |
</Canvas> | |
</StackPanel> | |
<ControlTemplate.Triggers> | |
<Trigger Property="IsSelected" Value="true"> | |
<Setter TargetName="root" Property="Foreground"> | |
<Setter.Value> | |
<SolidColorBrush Color="{DynamicResource WhiteColor}" /> | |
</Setter.Value> | |
</Setter> | |
<Setter TargetName="border" Property="Background"> | |
<Setter.Value> | |
<SolidColorBrush Color="{DynamicResource AccentColor}"/> | |
</Setter.Value> | |
</Setter> | |
<Setter TargetName="border" Property="BorderBrush"> | |
<Setter.Value> | |
<SolidColorBrush Color="{DynamicResource AccentColor}"/> | |
</Setter.Value> | |
</Setter> | |
<Setter TargetName="arrow" Property="Visibility" Value="Visible"/> | |
</Trigger> | |
<Trigger Property="IsSelected" Value="false"> | |
<Setter TargetName="root" Property="Foreground"> | |
<Setter.Value> | |
<SolidColorBrush Color="{DynamicResource BlackColor}" /> | |
</Setter.Value> | |
</Setter> | |
<Setter TargetName="arrow" Property="Visibility" Value="Hidden"/> | |
</Trigger> | |
<Trigger Property="IsMouseOver" Value="True"> | |
<Setter TargetName="root" Property="Foreground"> | |
<Setter.Value> | |
<SolidColorBrush Color="{DynamicResource WhiteColor}" /> | |
</Setter.Value> | |
</Setter> | |
<Setter TargetName="border" Property="BorderBrush" Value="{DynamicResource AccentColorBrush}"></Setter> | |
<Setter TargetName="border" Property="Background"> | |
<Setter.Value> | |
<SolidColorBrush Color="{DynamicResource AccentColor}"/> | |
</Setter.Value> | |
</Setter> | |
</Trigger> | |
</ControlTemplate.Triggers> | |
</ControlTemplate> | |
</Setter.Value> | |
</Setter> | |
</Style> |
<Style TargetType="TabItem" x:Key="AzureNavTabItem"> | |
<Setter Property="FocusVisualStyle" Value="{x:Null}" /> | |
<Setter Property="IsTabStop" Value="False" /> | |
<Setter Property="BorderThickness" Value="0" /> | |
<Setter Property="Margin" Value="0,2,20,0"/> | |
<Setter Property="Padding" Value="0"/> | |
<Setter Property="HorizontalContentAlignment" Value="Left" /> | |
<Setter Property="VerticalContentAlignment" Value="Stretch" /> | |
<Setter Property="MinWidth" Value="5" /> | |
<Setter Property="MinHeight" Value="5" /> | |
<Setter Property="Template"> | |
<Setter.Value> | |
<ControlTemplate TargetType="TabItem"> | |
<Label x:Name="root" FontSize="15" Margin="{TemplateBinding Margin}" | |
FontWeight="SemiBold"> | |
<ContentPresenter ContentSource="Header" RecognizesAccessKey="True" /> | |
</Label> | |
<ControlTemplate.Triggers> | |
<Trigger Property="IsSelected" Value="true"> | |
<Setter TargetName="root" Property="Foreground"> | |
<Setter.Value> | |
<SolidColorBrush Color="{DynamicResource AccentColor}" /> | |
</Setter.Value> | |
</Setter> | |
</Trigger> | |
<Trigger Property="IsSelected" Value="false"> | |
<Setter TargetName="root" Property="Foreground"> | |
<Setter.Value> | |
<SolidColorBrush Color="{DynamicResource Gray2}" /> | |
</Setter.Value> | |
</Setter> | |
</Trigger> | |
<Trigger SourceName="root" Property="IsMouseOver" Value="True"> | |
<Setter TargetName="root" Property="Foreground"> | |
<Setter.Value> | |
<SolidColorBrush Color="{DynamicResource AccentColor}" /> | |
</Setter.Value> | |
</Setter> | |
</Trigger> | |
</ControlTemplate.Triggers> | |
</ControlTemplate> | |
</Setter.Value> | |
</Setter> | |
</Style> |
<Grid> | |
<Grid.RowDefinitions> | |
<RowDefinition Height="*"/> | |
</Grid.RowDefinitions> | |
<TabControl Grid.Row="0" Padding="0"> | |
<TabControl.Resources> | |
<Style TargetType="TabItem" BasedOn="{StaticResource AzureTabItem}"/> | |
</TabControl.Resources> | |
<TabItem Header="HOME"> | |
<TabControl> | |
<TabControl.Resources> | |
<Style TargetType="TabItem" BasedOn="{StaticResource AzureNavTabItem}"/> | |
</TabControl.Resources> | |
<TabItem Header="PAGE INFO"></TabItem> | |
<TabItem Header="CHANGE HISTORY"></TabItem> | |
</TabControl> | |
</TabItem> | |
<TabItem Header="SOURCE CODE" BorderBrush="Red"> | |
<TabControl> | |
<TabControl.Resources> | |
<Style TargetType="TabItem" BasedOn="{StaticResource AzureNavTabItem}"/> | |
</TabControl.Resources> | |
<TabItem Header="FILES"></TabItem> | |
<TabItem Header="HISTORY"></TabItem> | |
<TabItem Header="FORKS"></TabItem> | |
</TabControl> | |
</TabItem> | |
<TabItem Header="DOCUMENTATION" BorderBrush="LightGreen"> | |
<TabControl> | |
<TabControl.Resources> | |
<Style TargetType="TabItem" BasedOn="{StaticResource AzureNavTabItem}"/> | |
</TabControl.Resources> | |
<TabItem Header="ITEM 1"></TabItem> | |
<TabItem Header="ITEM 2"></TabItem> | |
</TabControl> | |
</TabItem> | |
</TabControl> | |
</Grid> |