Compare commits

..

1 Commits

10 changed files with 125 additions and 111 deletions

View File

@@ -5,12 +5,10 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:views="clr-namespace:Semi.Avalonia.Demo.Views" xmlns:views="clr-namespace:Semi.Avalonia.Demo.Views"
Title="Semi Avalonia Demo" Title="Semi.Avalonia.Demo"
d:DesignHeight="450" d:DesignHeight="450"
d:DesignWidth="800" d:DesignWidth="800"
ExtendClientAreaToDecorationsHint="True"
ExtendClientAreaTitleBarHeightHint="40"
Icon="/Assets/irihi.ico" Icon="/Assets/irihi.ico"
mc:Ignorable="d"> mc:Ignorable="d">
<views:MainView Margin="{Binding $parent[Window].WindowDecorationMargin}" /> <views:MainView />
</Window> </Window>

View File

@@ -1,4 +1,5 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <ResourceDictionary xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ControlTheme x:Key="CaptionButton" TargetType="Button"> <ControlTheme x:Key="CaptionButton" TargetType="Button">
<Setter Property="Foreground" Value="{DynamicResource CaptionButtonForeground}" /> <Setter Property="Foreground" Value="{DynamicResource CaptionButtonForeground}" />
@@ -9,18 +10,19 @@
<Setter Property="Height" Value="{StaticResource CaptionButtonHeight}" /> <Setter Property="Height" Value="{StaticResource CaptionButtonHeight}" />
<Setter Property="Cursor" Value="Hand" /> <Setter Property="Cursor" Value="Hand" />
<Setter Property="VerticalAlignment" Value="Stretch" /> <Setter Property="VerticalAlignment" Value="Stretch" />
<Setter Property="WindowDecorationProperties.ElementRole" Value="DecorationsElement" />
<Setter Property="Template"> <Setter Property="Template">
<ControlTemplate TargetType="Button"> <ControlTemplate TargetType="Button">
<ContentPresenter <ContentPresenter
Name="PART_ContentPresenter" Name="PART_ContentPresenter"
Padding="{TemplateBinding Padding}" Padding="{TemplateBinding Padding}"
Foreground="{TemplateBinding Foreground}"
Background="{TemplateBinding Background}" Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}" BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}" BorderThickness="{TemplateBinding BorderThickness}"
Content="{TemplateBinding Content}" Content="{TemplateBinding Content}"
ContentTemplate="{TemplateBinding ContentTemplate}" ContentTemplate="{TemplateBinding ContentTemplate}"
CornerRadius="{TemplateBinding CornerRadius}" CornerRadius="{TemplateBinding CornerRadius}" />
Foreground="{TemplateBinding Foreground}" />
</ControlTemplate> </ControlTemplate>
</Setter> </Setter>
@@ -36,171 +38,181 @@
<ControlTheme x:Key="{x:Type WindowDrawnDecorations}" TargetType="WindowDrawnDecorations"> <ControlTheme x:Key="{x:Type WindowDrawnDecorations}" TargetType="WindowDrawnDecorations">
<Setter Property="DefaultTitleBarHeight" Value="32" /> <Setter Property="DefaultTitleBarHeight" Value="32" />
<Setter Property="DefaultFrameThickness" Value="1" /> <Setter Property="DefaultFrameThickness" Value="1" />
<Setter Property="DefaultShadowThickness" Value="16" /> <Setter Property="DefaultShadowThickness" Value="8" />
<Setter Property="Template"> <Setter Property="Template">
<WindowDrawnDecorationsTemplate> <WindowDrawnDecorationsTemplate>
<WindowDrawnDecorationsContent> <WindowDrawnDecorationsContent>
<WindowDrawnDecorationsContent.Underlay> <WindowDrawnDecorationsContent.Underlay>
<!-- Full-size: covers shadow area + frame + behind client area --> <Panel Name="PART_UnderlayWrapper">
<Panel> <Border Name="PART_WindowBorder"
<Border Background="{DynamicResource SystemControlBackgroundAltHighBrush}"
x:Name="PART_WindowBorder" BorderThickness="{TemplateBinding FrameThickness}"
Margin="{TemplateBinding ShadowThickness}" BorderBrush="{DynamicResource SystemControlForegroundBaseMediumBrush}"
Background="{DynamicResource WindowBackground}" IsHitTestVisible="False" />
BorderBrush="{DynamicResource WindowBorderBrush}"
BorderThickness="1"
BoxShadow="0 8 32 0 #40000000" />
<!-- Titlebar: background, title text, and drag area live in underlay --> <!-- Titlebar: background, title text, and drag area live in underlay -->
<Panel x:Name="PART_TitleBar" VerticalAlignment="Top" <Panel Name="PART_TitleBar" VerticalAlignment="Top"
Height="{TemplateBinding TitleBarHeight}" Height="{TemplateBinding TitleBarHeight}"
Background="{DynamicResource SystemControlBackgroundAltHighBrush}" Background="{DynamicResource SystemControlBackgroundAltHighBrush}"
IsVisible="{TemplateBinding HasTitleBar}" IsVisible="{TemplateBinding HasTitleBar}"
WindowDecorationProperties.ElementRole="TitleBar" /> WindowDecorationProperties.ElementRole="TitleBar" />
</Panel> </Panel>
</WindowDrawnDecorationsContent.Underlay> </WindowDrawnDecorationsContent.Underlay>
<WindowDrawnDecorationsContent.Overlay> <WindowDrawnDecorationsContent.Overlay>
<!-- Positioned over the titlebar area --> <!-- Overlay: only interactive caption buttons -->
<Panel x:Name="PART_OverlayWrapper"> <Panel Name="PART_OverlayWrapper">
<!-- Title text lives in overlay so it renders above client content --> <!-- Title text lives in overlay so it renders above client content -->
<Panel <Panel Name="PART_TitleTextPanel" VerticalAlignment="Top"
x:Name="PART_TitleTextPanel" Height="{TemplateBinding TitleBarHeight}"
Height="{TemplateBinding TitleBarHeight}" IsHitTestVisible="False"
VerticalAlignment="Top" IsVisible="{TemplateBinding HasTitleBar}">
IsHitTestVisible="False" <TextBlock Text="{TemplateBinding Title}"
IsVisible="{TemplateBinding HasTitleBar}"> VerticalAlignment="Center"
<TextBlock Margin="12,0,0,0"
Margin="12,0,0,0" FontSize="12" />
VerticalAlignment="Center"
FontSize="12"
Text="{TemplateBinding Title}" />
</Panel> </Panel>
<StackPanel <StackPanel Name="PART_OverlayPanel"
x:Name="PART_OverlayPanel" VerticalAlignment="Top"
Height="{TemplateBinding TitleBarHeight}" HorizontalAlignment="Right"
HorizontalAlignment="Right" Height="{TemplateBinding TitleBarHeight}"
VerticalAlignment="Top" IsVisible="{TemplateBinding HasTitleBar}"
IsVisible="{TemplateBinding HasTitleBar}" Orientation="Horizontal"
Orientation="Horizontal" Spacing="2"
Spacing="2" TextElement.FontSize="10">
TextElement.FontSize="10">
<Button <Button
Name="PART_FullScreenButton" Name="PART_FullScreenButton"
Theme="{StaticResource CaptionButton}" Theme="{StaticResource CaptionButton}"
WindowDecorationProperties.ElementRole="FullScreenButton"> WindowDecorationProperties.ElementRole="FullScreenButton">
<PathIcon <PathIcon
Name="PART_FullScreenButtonIcon" Name="PART_FullScreenButtonIcon"
Theme="{StaticResource InnerPathIcon}"
Data="{StaticResource WindowExpandGlyph}" Data="{StaticResource WindowExpandGlyph}"
Foreground="{Binding $parent[Button].Foreground}" Foreground="{Binding $parent[Button].Foreground}" />
Theme="{StaticResource InnerPathIcon}" />
</Button> </Button>
<Button <Button
Name="PART_MinimizeButton" Name="PART_MinimizeButton"
AutomationProperties.Name="Minimize"
Theme="{StaticResource CaptionButton}" Theme="{StaticResource CaptionButton}"
WindowDecorationProperties.ElementRole="MinimizeButton"> WindowDecorationProperties.ElementRole="MinimizeButton">
<PathIcon <PathIcon
Name="PART_MinimizeButtonIcon" Name="PART_MinimizeButtonIcon"
Theme="{StaticResource InnerPathIcon}"
Data="{StaticResource WindowMinimizeGlyph}" Data="{StaticResource WindowMinimizeGlyph}"
Foreground="{Binding $parent[Button].Foreground}" Foreground="{Binding $parent[Button].Foreground}" />
Theme="{StaticResource InnerPathIcon}" />
</Button> </Button>
<Button <Button
Name="PART_MaximizeButton" Name="PART_MaximizeButton"
AutomationProperties.Name="Maximize"
Theme="{StaticResource CaptionButton}" Theme="{StaticResource CaptionButton}"
WindowDecorationProperties.ElementRole="MaximizeButton"> WindowDecorationProperties.ElementRole="MaximizeButton">
<PathIcon <PathIcon
Name="PART_MaximizeButtonIcon" Name="PART_MaximizeButtonIcon"
Theme="{StaticResource InnerPathIcon}"
Data="{StaticResource WindowMaximizeGlyph}" Data="{StaticResource WindowMaximizeGlyph}"
Foreground="{Binding $parent[Button].Foreground}" Foreground="{Binding $parent[Button].Foreground}" />
Theme="{StaticResource InnerPathIcon}" />
</Button> </Button>
<Button <Button
Name="PART_CloseButton" Name="PART_CloseButton"
AutomationProperties.Name="Close"
Theme="{StaticResource CaptionButton}" Theme="{StaticResource CaptionButton}"
WindowDecorationProperties.ElementRole="CloseButton"> WindowDecorationProperties.ElementRole="CloseButton">
<PathIcon <PathIcon
Name="PART_CloseButtonIcon" Name="PART_CloseButtonIcon"
Theme="{StaticResource InnerPathIcon}"
Data="{StaticResource WindowCloseIconGlyph}" Data="{StaticResource WindowCloseIconGlyph}"
Foreground="{Binding $parent[Button].Foreground}" Foreground="{Binding $parent[Button].Foreground}" />
Theme="{StaticResource InnerPathIcon}" />
</Button> </Button>
</StackPanel> </StackPanel>
</Panel> </Panel>
</WindowDrawnDecorationsContent.Overlay> </WindowDrawnDecorationsContent.Overlay>
<WindowDrawnDecorationsContent.FullscreenPopover> <WindowDrawnDecorationsContent.FullscreenPopover>
<!-- Shown on hover at top edge in fullscreen --> <Panel Height="{TemplateBinding DefaultTitleBarHeight}"
<DockPanel Height="{TemplateBinding TitleBarHeight}" Background="#E0000000"> VerticalAlignment="Top"
<StackPanel DockPanel.Dock="Right" Orientation="Horizontal"> Background="{DynamicResource SystemControlBackgroundChromeMediumLowBrush}"
<Button WindowDecorationProperties.ElementRole="TitleBar">
x:Name="PART_PopoverFullScreenButton" <TextBlock Text="{TemplateBinding Title}"
Theme="{StaticResource CaptionButton}" VerticalAlignment="Center"
WindowDecorationProperties.ElementRole="FullScreenButton"> Margin="12,0,0,0"
FontSize="12" />
<StackPanel HorizontalAlignment="Right"
Orientation="Horizontal"
Spacing="2"
TextElement.FontSize="10">
<Button Name="PART_PopoverFullScreenButton"
Theme="{StaticResource CaptionButton}"
WindowDecorationProperties.ElementRole="FullScreenButton">
<PathIcon <PathIcon
Name="PART_PopoverFullScreenButtonIcon"
Theme="{StaticResource InnerPathIcon}"
Data="{StaticResource WindowCollapseGlyph}" Data="{StaticResource WindowCollapseGlyph}"
Foreground="{Binding $parent[Button].Foreground}" Foreground="{Binding $parent[Button].Foreground}" />
Theme="{StaticResource InnerPathIcon}" /> </Button>
<Button Name="PART_PopoverCloseButton"
Theme="{StaticResource CaptionButton}"
WindowDecorationProperties.ElementRole="CloseButton">
<PathIcon
Name="PART_PopoverCloseButtonIcon"
Theme="{StaticResource InnerPathIcon}"
Data="{StaticResource WindowCloseIconGlyph}"
Foreground="{Binding $parent[Button].Foreground}" />
</Button> </Button>
</StackPanel> </StackPanel>
<TextBlock </Panel>
Margin="12,0"
VerticalAlignment="Center"
Foreground="White"
Text="{TemplateBinding Title}" />
</DockPanel>
</WindowDrawnDecorationsContent.FullscreenPopover> </WindowDrawnDecorationsContent.FullscreenPopover>
</WindowDrawnDecorationsContent> </WindowDrawnDecorationsContent>
</WindowDrawnDecorationsTemplate> </WindowDrawnDecorationsTemplate>
</Setter> </Setter>
<Style Selector="^ /template/ Button#PART_CloseButton:pointerover"> <!-- Shadow: inset border and add drop shadow -->
<Setter Property="Foreground" Value="{DynamicResource CaptionButtonCloseForeground}" /> <Style Selector="^:has-shadow">
<Setter Property="Background" Value="{DynamicResource CaptionButtonClosePointeroverBackground}" /> <Style Selector="^ /template/ Panel#PART_UnderlayWrapper">
<Setter Property="Margin" Value="{TemplateBinding ShadowThickness}" />
</Style>
<Style Selector="^ /template/ Border#PART_WindowBorder">
<Setter Property="BoxShadow" Value="{DynamicResource WindowBorderShadow}" />
</Style>
<Style Selector="^ /template/ Panel#PART_OverlayWrapper">
<Setter Property="Margin" Value="{TemplateBinding ShadowThickness}" />
</Style>
</Style> </Style>
<Style Selector="^ /template/ Button#PART_CloseButton:pressed">
<Setter Property="Foreground" Value="{DynamicResource CaptionButtonCloseForeground}" /> <!-- Border: inset titlebar and buttons inside frame -->
<Setter Property="Background" Value="{DynamicResource CaptionButtonClosePressedBackground}" /> <Style Selector="^:has-border">
<Style Selector="^ /template/ Panel#PART_TitleTextPanel">
<Setter Property="Margin" Value="1,1,1,0" />
</Style>
<Style Selector="^ /template/ Panel#PART_TitleBar">
<Setter Property="Margin" Value="1,1,1,0" />
</Style>
<Style Selector="^ /template/ StackPanel#PART_OverlayPanel">
<Setter Property="Margin" Value="0,1,1,0" />
</Style>
</Style> </Style>
<!-- Shadow: inset border and add drop shadow --> <!-- Fullscreen: hide overlay and titlebar (popover takes over) -->
<Style Selector="^:has-shadow /template/ Panel#PART_UnderlayWrapper"> <Style Selector="^:fullscreen">
<Setter Property="Margin" Value="{TemplateBinding ShadowThickness}" /> <Style Selector="^ /template/ Panel#PART_TitleTextPanel">
<Setter Property="IsVisible" Value="False" />
</Style>
<Style Selector="^ /template/ StackPanel#PART_OverlayPanel">
<Setter Property="IsVisible" Value="False" />
</Style>
<Style Selector="^ /template/ Panel#PART_TitleBar">
<Setter Property="IsVisible" Value="False" />
</Style>
<Style Selector="^ /template/ PathIcon#PART_FullScreenButtonIcon">
<Setter Property="Data" Value="{StaticResource WindowCollapseGlyph}" />
</Style>
</Style> </Style>
<Style Selector="^:has-shadow /template/ Border#PART_WindowBorder">
<Setter Property="BoxShadow" Value="0 2 10 2 #80000000" /> <Style Selector="^:maximized /template/ PathIcon#PART_MaximizeButtonIcon">
</Style>
<Style Selector="^:has-shadow /template/ Panel#PART_OverlayWrapper">
<Setter Property="Margin" Value="{TemplateBinding ShadowThickness}" />
</Style>
<!-- Maximized: restore button path changes -->
<Style Selector="^:maximized /template/ Path#PART_MaximizeButtonIcon">
<Setter Property="Data" Value="{StaticResource WindowRestoreGlyph}" /> <Setter Property="Data" Value="{StaticResource WindowRestoreGlyph}" />
</Style> </Style>
<!-- Border: inset titlebar and buttons inside frame --> <Style Selector="^ /template/ Button:disabled">
<Style Selector="^:has-border /template/ Panel#PART_TitleTextPanel"> <Setter Property="Opacity" Value="0.2" />
<Setter Property="Margin" Value="1,1,1,0" />
</Style>
<Style Selector="^:has-border /template/ Panel#PART_TitleBar">
<Setter Property="Margin" Value="1,1,1,0" />
</Style>
<Style Selector="^:has-border /template/ StackPanel#PART_OverlayPanel">
<Setter Property="Margin" Value="0,1,1,0" />
</Style>
<!-- Fullscreen: hide overlay and titlebar (popover takes over) -->
<Style Selector="^:fullscreen /template/ Panel#PART_TitleTextPanel">
<Setter Property="IsVisible" Value="False" />
</Style>
<Style Selector="^:fullscreen /template/ StackPanel#PART_OverlayPanel">
<Setter Property="IsVisible" Value="False" />
</Style>
<Style Selector="^:fullscreen /template/ Panel#PART_TitleBar">
<Setter Property="IsVisible" Value="False" />
</Style> </Style>
</ControlTheme> </ControlTheme>
</ResourceDictionary> </ResourceDictionary>

View File

@@ -1,4 +1,6 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <ResourceDictionary xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StaticResource x:Key="WindowBorderShadow" ResourceKey="SemiShadowElevated"/>
<StaticResource x:Key="CaptionButtonPointeroverBackground" ResourceKey="SemiColorFill1" /> <StaticResource x:Key="CaptionButtonPointeroverBackground" ResourceKey="SemiColorFill1" />
<StaticResource x:Key="CaptionButtonPressedBackground" ResourceKey="SemiColorFill2" /> <StaticResource x:Key="CaptionButtonPressedBackground" ResourceKey="SemiColorFill2" />
<StaticResource x:Key="CaptionButtonCloseForeground" ResourceKey="SemiColorWhite" /> <StaticResource x:Key="CaptionButtonCloseForeground" ResourceKey="SemiColorWhite" />

View File

@@ -7,7 +7,6 @@
<ResourceInclude Source="ButtonSpinner.axaml" /> <ResourceInclude Source="ButtonSpinner.axaml" />
<ResourceInclude Source="Calendar.axaml" /> <ResourceInclude Source="Calendar.axaml" />
<ResourceInclude Source="CalendarDatePicker.axaml" /> <ResourceInclude Source="CalendarDatePicker.axaml" />
<ResourceInclude Source="CaptionButtons.axaml" />
<ResourceInclude Source="Carousel.axaml" /> <ResourceInclude Source="Carousel.axaml" />
<ResourceInclude Source="CheckBox.axaml" /> <ResourceInclude Source="CheckBox.axaml" />
<ResourceInclude Source="ComboBox.axaml" /> <ResourceInclude Source="ComboBox.axaml" />
@@ -43,5 +42,6 @@
<ResourceInclude Source="Tooltip.axaml" /> <ResourceInclude Source="Tooltip.axaml" />
<ResourceInclude Source="TreeView.axaml" /> <ResourceInclude Source="TreeView.axaml" />
<ResourceInclude Source="Window.axaml" /> <ResourceInclude Source="Window.axaml" />
<ResourceInclude Source="WindowDrawnDecorations.axaml" />
</ResourceDictionary.MergedDictionaries> </ResourceDictionary.MergedDictionaries>
</ResourceDictionary> </ResourceDictionary>

View File

@@ -7,7 +7,6 @@
<ResourceInclude Source="ButtonSpinner.axaml" /> <ResourceInclude Source="ButtonSpinner.axaml" />
<ResourceInclude Source="Calendar.axaml" /> <ResourceInclude Source="Calendar.axaml" />
<ResourceInclude Source="CalendarDatePicker.axaml" /> <ResourceInclude Source="CalendarDatePicker.axaml" />
<ResourceInclude Source="CaptionButtons.axaml" />
<ResourceInclude Source="Carousel.axaml" /> <ResourceInclude Source="Carousel.axaml" />
<ResourceInclude Source="CheckBox.axaml" /> <ResourceInclude Source="CheckBox.axaml" />
<ResourceInclude Source="ComboBox.axaml" /> <ResourceInclude Source="ComboBox.axaml" />
@@ -43,5 +42,6 @@
<ResourceInclude Source="Tooltip.axaml" /> <ResourceInclude Source="Tooltip.axaml" />
<ResourceInclude Source="TreeView.axaml" /> <ResourceInclude Source="TreeView.axaml" />
<ResourceInclude Source="Window.axaml" /> <ResourceInclude Source="Window.axaml" />
<ResourceInclude Source="WindowDrawnDecorations.axaml" />
</ResourceDictionary.MergedDictionaries> </ResourceDictionary.MergedDictionaries>
</ResourceDictionary> </ResourceDictionary>

View File

@@ -1,4 +1,6 @@
<ResourceDictionary xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <ResourceDictionary xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StaticResource x:Key="WindowBorderShadow" ResourceKey="SemiShadowElevated"/>
<StaticResource x:Key="CaptionButtonPointeroverBackground" ResourceKey="SemiColorFill1" /> <StaticResource x:Key="CaptionButtonPointeroverBackground" ResourceKey="SemiColorFill1" />
<StaticResource x:Key="CaptionButtonPressedBackground" ResourceKey="SemiColorFill2" /> <StaticResource x:Key="CaptionButtonPressedBackground" ResourceKey="SemiColorFill2" />
<StaticResource x:Key="CaptionButtonCloseForeground" ResourceKey="SemiColorWhite" /> <StaticResource x:Key="CaptionButtonCloseForeground" ResourceKey="SemiColorWhite" />

View File

@@ -7,7 +7,6 @@
<ResourceInclude Source="ButtonSpinner.axaml" /> <ResourceInclude Source="ButtonSpinner.axaml" />
<ResourceInclude Source="Calendar.axaml" /> <ResourceInclude Source="Calendar.axaml" />
<ResourceInclude Source="CalendarDatePicker.axaml" /> <ResourceInclude Source="CalendarDatePicker.axaml" />
<ResourceInclude Source="CaptionButtons.axaml" />
<ResourceInclude Source="Carousel.axaml" /> <ResourceInclude Source="Carousel.axaml" />
<ResourceInclude Source="CheckBox.axaml" /> <ResourceInclude Source="CheckBox.axaml" />
<ResourceInclude Source="ComboBox.axaml" /> <ResourceInclude Source="ComboBox.axaml" />
@@ -43,5 +42,6 @@
<ResourceInclude Source="Tooltip.axaml" /> <ResourceInclude Source="Tooltip.axaml" />
<ResourceInclude Source="TreeView.axaml" /> <ResourceInclude Source="TreeView.axaml" />
<ResourceInclude Source="Window.axaml" /> <ResourceInclude Source="Window.axaml" />
<ResourceInclude Source="WindowDrawnDecorations.axaml" />
</ResourceDictionary.MergedDictionaries> </ResourceDictionary.MergedDictionaries>
</ResourceDictionary> </ResourceDictionary>

View File

@@ -7,7 +7,6 @@
<ResourceInclude Source="ButtonSpinner.axaml" /> <ResourceInclude Source="ButtonSpinner.axaml" />
<ResourceInclude Source="Calendar.axaml" /> <ResourceInclude Source="Calendar.axaml" />
<ResourceInclude Source="CalendarDatePicker.axaml" /> <ResourceInclude Source="CalendarDatePicker.axaml" />
<ResourceInclude Source="CaptionButtons.axaml" />
<ResourceInclude Source="Carousel.axaml" /> <ResourceInclude Source="Carousel.axaml" />
<ResourceInclude Source="CheckBox.axaml" /> <ResourceInclude Source="CheckBox.axaml" />
<ResourceInclude Source="ComboBox.axaml" /> <ResourceInclude Source="ComboBox.axaml" />
@@ -43,5 +42,6 @@
<ResourceInclude Source="Tooltip.axaml" /> <ResourceInclude Source="Tooltip.axaml" />
<ResourceInclude Source="TreeView.axaml" /> <ResourceInclude Source="TreeView.axaml" />
<ResourceInclude Source="Window.axaml" /> <ResourceInclude Source="Window.axaml" />
<ResourceInclude Source="WindowDrawnDecorations.axaml" />
</ResourceDictionary.MergedDictionaries> </ResourceDictionary.MergedDictionaries>
</ResourceDictionary> </ResourceDictionary>