16 lines
778 B
XML
16 lines
778 B
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:KanSan"
|
|
xmlns:l="clr-namespace:KanSan">
|
|
<l:IstFertigZuBackgroundConverter x:Key="IstFertigZuBackgroundConverter" />
|
|
<l:IstFertigZuTextConverter x:Key="IstFertigZuTextConverter" />
|
|
<Style TargetType="{x:Type UserControl}">
|
|
<Setter Property="FontFamily" Value="Comic Sans MS"/>
|
|
<Setter Property="FontSize" Value="20" />
|
|
</Style>
|
|
|
|
<Style TargetType="{x:Type Window}">
|
|
<Setter Property="FontFamily" Value="Comic Sans MS"/>
|
|
<Setter Property="FontSize" Value="20" />
|
|
</Style>
|
|
</ResourceDictionary> |