mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
96d4150d26
* remove dotnet-tool.json because the project does not rely on any dotnet tools. * remove Directory.Build.props because the solution has only one project. * move src/SourceGit to src. It's not needed to put all sources into a subfolder of src since there's only one project.
21 lines
1.1 KiB
XML
21 lines
1.1 KiB
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" Click="MaximizeOrRestoreWindow">
|
|
<Path Data="{Binding $parent[Window].WindowState, Converter={x:Static c:WindowStateConverters.ToMaxOrRestoreIcon}}"/>
|
|
</Button>
|
|
<Button Classes="caption_button" Click="CloseWindow">
|
|
<Path Data="{StaticResource Icons.Window.Close}" Width="9" Height="9"/>
|
|
</Button>
|
|
</StackPanel>
|
|
</UserControl>
|