-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<ResourceDictionary xmlns="https://github.com/avaloniaui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
x:ClassModifier="internal"> | ||
<Design.PreviewWith> | ||
<Border Height="24" Width="300"> | ||
<TitleBar Background="SkyBlue" Foreground="Black" /> | ||
</Border> | ||
</Design.PreviewWith> | ||
|
||
<ControlTheme x:Key="MaterialTitleBar" TargetType="TitleBar"> | ||
<Setter Property="Foreground" Value="{DynamicResource MaterialBodyBrush}" /> | ||
<Setter Property="VerticalAlignment" Value="Top" /> | ||
<Setter Property="HorizontalAlignment" Value="Stretch" /> | ||
<Setter Property="Background" Value="Transparent" /> | ||
<Setter Property="Template"> | ||
<ControlTemplate> | ||
<Panel HorizontalAlignment="{TemplateBinding HorizontalAlignment}" | ||
VerticalAlignment="Stretch"> | ||
<Panel x:Name="PART_MouseTracker" | ||
Height="1" | ||
VerticalAlignment="Top" /> | ||
<Panel x:Name="PART_Container"> | ||
<Border x:Name="PART_Background" | ||
Background="{TemplateBinding Background}" | ||
IsHitTestVisible="False" /> | ||
<CaptionButtons x:Name="PART_CaptionButtons" | ||
VerticalAlignment="Top" | ||
HorizontalAlignment="Right" | ||
Foreground="{TemplateBinding Foreground}" /> | ||
</Panel> | ||
</Panel> | ||
</ControlTemplate> | ||
</Setter> | ||
|
||
<Style Selector="^:fullscreen"> | ||
<Setter Property="Background" Value="{DynamicResource SystemAccentColor}" /> | ||
</Style> | ||
|
||
<Style Selector="^:fullscreen /template/ Border#PART_Background"> | ||
<Setter Property="IsHitTestVisible" Value="True" /> | ||
</Style> | ||
|
||
<Style Selector="^:fullscreen /template/ Panel#PART_MouseTracker"> | ||
<Setter Property="Background" Value="Transparent" /> | ||
</Style> | ||
|
||
<Style Selector="^:fullscreen /template/ Panel#PART_Container"> | ||
<Setter Property="RenderTransform" Value="translateY(-30px)" /> | ||
<Setter Property="Transitions"> | ||
<Transitions> | ||
<TransformOperationsTransition Property="RenderTransform" Duration="0:0:.25" /> | ||
</Transitions> | ||
</Setter> | ||
</Style> | ||
|
||
<Style Selector="^:fullscreen:pointerover /template/ Panel#PART_Container"> | ||
<Setter Property="RenderTransform" Value="none" /> | ||
</Style> | ||
</ControlTheme> | ||
|
||
<ControlTheme x:Key="{x:Type TitleBar}" TargetType="TitleBar" | ||
BasedOn="{StaticResource MaterialTitleBar}" /> | ||
</ResourceDictionary> |