17 lines
927 B
Plaintext
17 lines
927 B
Plaintext
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:wpf="clr-namespace:WPFDark"
|
||
|
|
xmlns:controls="clr-namespace:WPFDark.Controls">
|
||
|
|
<Style TargetType="{x:Type controls:BiaColorPanel}">
|
||
|
|
<Setter Property="BorderColor" Value="{DynamicResource TextBoxBorderColorKey}" />
|
||
|
|
<Setter Property="Width" Value="36.0" />
|
||
|
|
<Setter Property="Height" Value="{x:Static wpf:Boxes.BasicOneLineHeight}" />
|
||
|
|
<Setter Property="CornerRadius" Value="{x:Static wpf:Boxes.BasicCornerRadiusPrim}" />
|
||
|
|
|
||
|
|
<Style.Triggers>
|
||
|
|
<Trigger Property="IsEnabled" Value="False">
|
||
|
|
<Setter Property="BorderColor" Value="{DynamicResource InactiveBorderColorKey}" />
|
||
|
|
</Trigger>
|
||
|
|
</Style.Triggers>
|
||
|
|
</Style>
|
||
|
|
</ResourceDictionary>
|