mirror of
https://github.com/DarthAffe/Arge.git
synced 2022-11-28 19:26:16 +00:00
(I'm not quite happy with everything so far, but it seems like I'm to stupid to understand how to correctly use routing with the layout I want)
18 lines
1.2 KiB
XML
18 lines
1.2 KiB
XML
<resources:CachedResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:resources="clr-namespace:Arge.Resources"
|
|
xmlns:buttons="clr-namespace:Arge.Controls.Buttons"
|
|
xmlns:window="clr-namespace:Arge.Controls.Window">
|
|
|
|
<resources:CachedResourceDictionary.MergedDictionaries>
|
|
<resources:CachedResourceDictionary Source="/Arge;component/Styles/BlurredDecorationWindow.xaml" />
|
|
<resources:CachedResourceDictionary Source="/Arge;component/Styles/ImageButton.xaml" />
|
|
<resources:CachedResourceDictionary Source="/Arge;component/Styles/ToolTip.xaml" />
|
|
</resources:CachedResourceDictionary.MergedDictionaries>
|
|
|
|
<Style TargetType="{x:Type window:BlurredDecorationWindow}" BasedOn="{StaticResource StyleBlurredDecorationWindow}" />
|
|
<Style TargetType="{x:Type buttons:ImageButton}" BasedOn="{StaticResource StyleImageButton}" />
|
|
<Style TargetType="ToolTip" BasedOn="{StaticResource StyleToolTip}" />
|
|
|
|
</resources:CachedResourceDictionary>
|