mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-30 21:57:20 -08:00
75 lines
3.1 KiB
Text
75 lines
3.1 KiB
Text
|
<v:ChromelessWindow 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:vm="using:SourceGit.ViewModels"
|
||
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||
|
x:Class="SourceGit.Views.ConfirmCommitWithoutFiles"
|
||
|
x:DataType="vm:ConfirmCommitWithoutFiles"
|
||
|
x:Name="ThisControl"
|
||
|
Icon="/App.ico"
|
||
|
Title="{DynamicResource Text.Warn}"
|
||
|
SizeToContent="WidthAndHeight"
|
||
|
CanResize="False"
|
||
|
WindowStartupLocation="CenterOwner">
|
||
|
<Grid RowDefinitions="Auto,Auto,Auto">
|
||
|
<!-- TitleBar -->
|
||
|
<Grid Grid.Row="0" ColumnDefinitions="Auto,*,Auto" Height="30" IsVisible="{Binding !#ThisControl.UseSystemWindowFrame}">
|
||
|
<Border Grid.Column="0" Grid.ColumnSpan="3"
|
||
|
Background="{DynamicResource Brush.TitleBar}"
|
||
|
BorderThickness="0,0,0,1" BorderBrush="{DynamicResource Brush.Border0}"
|
||
|
PointerPressed="BeginMoveWindow"/>
|
||
|
|
||
|
<Path Grid.Column="0"
|
||
|
Width="14" Height="14"
|
||
|
Data="{StaticResource Icons.Error}"
|
||
|
Margin="10,0,0,0"
|
||
|
IsVisible="{OnPlatform True, macOS=False}"/>
|
||
|
|
||
|
<v:CaptionButtonsMacOS Grid.Column="0"
|
||
|
Margin="0,2,0,0"
|
||
|
IsCloseButtonOnly="True"
|
||
|
IsVisible="{OnPlatform False, macOS=True}"/>
|
||
|
|
||
|
<TextBlock Grid.Column="0" Grid.ColumnSpan="3"
|
||
|
Classes="bold"
|
||
|
Text="{DynamicResource Text.Warn}"
|
||
|
HorizontalAlignment="Center" VerticalAlignment="Center"
|
||
|
IsHitTestVisible="False"/>
|
||
|
|
||
|
<v:CaptionButtons Grid.Column="2"
|
||
|
IsCloseButtonOnly="True"
|
||
|
IsVisible="{OnPlatform True, macOS=False}"/>
|
||
|
</Grid>
|
||
|
|
||
|
<!-- Body -->
|
||
|
<Border Grid.Row="1" Margin="16">
|
||
|
<TextBlock Text="{DynamicResource Text.WorkingCopy.ConfirmCommitWithoutFiles}"/>
|
||
|
</Border>
|
||
|
|
||
|
<!-- Buttons -->
|
||
|
<StackPanel Grid.Row="2" Margin="0,0,0,16" Orientation="Horizontal" HorizontalAlignment="Center">
|
||
|
<Button Classes="flat"
|
||
|
Width="80"
|
||
|
Height="30"
|
||
|
Margin="4,0"
|
||
|
Click="Sure"
|
||
|
Content="{DynamicResource Text.Sure}"
|
||
|
HorizontalAlignment="Center"
|
||
|
HorizontalContentAlignment="Center"
|
||
|
VerticalContentAlignment="Center"/>
|
||
|
|
||
|
<Button Classes="flat primary"
|
||
|
Width="80"
|
||
|
Height="30"
|
||
|
Margin="4,0"
|
||
|
Click="CloseWindow"
|
||
|
Content="{DynamicResource Text.Cancel}"
|
||
|
HorizontalAlignment="Center"
|
||
|
HorizontalContentAlignment="Center"
|
||
|
VerticalContentAlignment="Center"/>
|
||
|
</StackPanel>
|
||
|
</Grid>
|
||
|
</v:ChromelessWindow>
|