mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
21 lines
1,022 B
XML
21 lines
1,022 B
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:v="using:SourceGit.Views"
|
|
xmlns:c="using:SourceGit.Converters"
|
|
xmlns:vm="using:SourceGit.ViewModels"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="SourceGit.Views.CaptionButtons">
|
|
<StackPanel Orientation="Horizontal">
|
|
<Button Classes="caption_button" Click="MinimizeWindow">
|
|
<Path Data="{StaticResource Icons.Window.Minimize}"/>
|
|
</Button>
|
|
<Button Classes="caption_button max_or_restore_btn" Click="MaximizeOrRestoreWindow">
|
|
<Path/>
|
|
</Button>
|
|
<Button Classes="caption_button" Click="CloseWindow">
|
|
<Path Data="{StaticResource Icons.Window.Close}" Width="9" Height="9"/>
|
|
</Button>
|
|
</StackPanel>
|
|
</UserControl>
|