2015-06-04 18:15:54 +01:00
|
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:converters="clr-namespace:Filtration.Converters"
|
2015-07-06 12:01:48 +01:00
|
|
|
xmlns:commonConverters="clr-namespace:Filtration.Common.Converters;assembly=Filtration.Common"
|
2015-06-04 18:15:54 +01:00
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
mc:Ignorable="d" >
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
|
|
|
<ResourceDictionary>
|
|
|
|
<Style x:Key="PathOfExileFont">
|
|
|
|
<Setter Property="TextElement.FontFamily" Value="pack://application:,,,/resources/#Fontin SmallCaps" />
|
|
|
|
</Style>
|
|
|
|
<Style x:Key="ChromelessToggleButton" TargetType="{x:Type ToggleButton}">
|
|
|
|
<Setter Property="Template">
|
|
|
|
<Setter.Value>
|
|
|
|
<ControlTemplate TargetType="ToggleButton">
|
|
|
|
<Border BorderThickness="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
|
|
|
<ContentPresenter/>
|
|
|
|
</Border>
|
|
|
|
</ControlTemplate>
|
2015-06-07 15:13:09 +01:00
|
|
|
</Setter.Value>
|
|
|
|
</Setter>
|
|
|
|
</Style>
|
|
|
|
<Style x:Key="ChromelessButton" TargetType="{x:Type Button}">
|
|
|
|
<Setter Property="Template">
|
|
|
|
<Setter.Value>
|
|
|
|
<ControlTemplate TargetType="Button">
|
|
|
|
<Border BorderThickness="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
|
|
|
<ContentPresenter/>
|
|
|
|
</Border>
|
|
|
|
</ControlTemplate>
|
2015-06-04 18:15:54 +01:00
|
|
|
</Setter.Value>
|
|
|
|
</Setter>
|
|
|
|
</Style>
|
|
|
|
<converters:IntToItemRarityConverter x:Key="IntToItemRarityConverter" />
|
|
|
|
<converters:StringToVisibilityConverter x:Key="StringToVisibilityConverter" />
|
|
|
|
<converters:BoolInverterConverter x:Key="BoolInverterConverter" />
|
|
|
|
<converters:ColorToSolidColorBrushConverter x:Key="ColorToSolidColorBrushConverter" />
|
|
|
|
<converters:BooleanToBlockActionConverter x:Key="BooleanToBlockActionConverter" />
|
|
|
|
<converters:BooleanToBlockActionInverseConverter x:Key="BooleanToBlockActionInverseConverter" />
|
|
|
|
<converters:BlockItemTypeToStringConverter x:Key="BlockItemTypeToStringConverter" />
|
2015-07-06 12:01:48 +01:00
|
|
|
<commonConverters:BooleanVisibilityConverter x:Key="BooleanVisibilityConverter" />
|
2015-07-04 22:38:13 +01:00
|
|
|
<converters:InverseBooleanVisibilityConverter x:Key="InverseBooleanVisibilityConverter" />
|
2015-07-04 21:12:47 +01:00
|
|
|
<converters:BlockItemToRemoveEnabledVisibilityConverter x:Key="BlockItemToRemoveEnabledVisibilityConverter" />
|
2015-07-05 11:09:59 +01:00
|
|
|
<converters:AvailableThemeComponentsConverter x:Key="AvailableThemeComponentsConverter" />
|
2015-06-04 18:15:54 +01:00
|
|
|
</ResourceDictionary>
|
|
|
|
<ResourceDictionary Source="ExpanderStyle.xaml" />
|
|
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
</ResourceDictionary>
|