2024-05-25 11:11:24 -07:00
|
|
|
<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:vm="using:SourceGit.ViewModels"
|
|
|
|
xmlns:c="clr-namespace:SourceGit.Converters"
|
|
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
|
|
x:Class="SourceGit.Views.CheckoutCommit"
|
|
|
|
x:DataType="vm:CheckoutCommit">
|
|
|
|
<StackPanel Orientation="Vertical" Margin="8,0">
|
|
|
|
<TextBlock FontSize="18"
|
|
|
|
Classes="bold"
|
2024-05-25 23:25:21 -07:00
|
|
|
Text="{DynamicResource Text.Checkout.Commit}" />
|
|
|
|
|
2024-06-11 20:42:22 -07:00
|
|
|
<StackPanel Orientation="Horizontal" Margin="0,12,0,16">
|
|
|
|
<Path Width="14" Height="14" Data="{StaticResource Icons.Error}" Fill="DarkOrange"/>
|
|
|
|
<TextBlock Margin="4,0,0,0"
|
|
|
|
Text="{DynamicResource Text.Checkout.Commit.Warning}"
|
|
|
|
TextWrapping="Wrap"
|
|
|
|
FontStyle="Italic"/>
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
<Grid RowDefinitions="32,Auto" ColumnDefinitions="Auto,*" ClipToBounds="True" HorizontalAlignment="Center">
|
2024-05-25 23:25:21 -07:00
|
|
|
<TextBlock Grid.Row="0" Grid.Column="0"
|
|
|
|
HorizontalAlignment="Right" VerticalAlignment="Center"
|
|
|
|
Margin="0,0,8,0"
|
|
|
|
Text="{DynamicResource Text.Checkout.Commit.Target}" />
|
|
|
|
<StackPanel Grid.Row="0" Grid.Column="1" Orientation="Horizontal">
|
|
|
|
<Path Width="14" Height="14" Margin="0,8,0,0" Data="{StaticResource Icons.Commit}" />
|
|
|
|
<TextBlock Classes="monospace" Foreground="DarkOrange" VerticalAlignment="Center" Margin="8,0" Text="{Binding Commit.SHA, Converter={x:Static c:StringConverters.ToShortSHA}}" />
|
|
|
|
<TextBlock Text="{Binding Commit.Subject}"/>
|
|
|
|
</StackPanel>
|
|
|
|
|
2024-05-25 11:11:24 -07:00
|
|
|
<TextBlock Grid.Row="1" Grid.Column="0"
|
2024-05-25 23:25:21 -07:00
|
|
|
HorizontalAlignment="Right" VerticalAlignment="Center"
|
2024-05-25 11:11:24 -07:00
|
|
|
Margin="0,0,8,0"
|
2024-05-25 23:25:21 -07:00
|
|
|
Text="{DynamicResource Text.Checkout.LocalChanges}"
|
|
|
|
IsVisible="{Binding HasLocalChanges}"/>
|
|
|
|
<StackPanel Grid.Row="1" Grid.Column="1" Height="32" Orientation="Horizontal" IsVisible="{Binding HasLocalChanges}">
|
2024-05-25 11:11:24 -07:00
|
|
|
<RadioButton Content="{DynamicResource Text.Checkout.LocalChanges.StashAndReply}"
|
|
|
|
GroupName="LocalChanges"
|
2024-05-25 23:25:21 -07:00
|
|
|
IsChecked="{Binding AutoStash, Mode=TwoWay}" />
|
2024-05-25 11:11:24 -07:00
|
|
|
<RadioButton Content="{DynamicResource Text.Checkout.LocalChanges.Discard}"
|
|
|
|
GroupName="LocalChanges"
|
2024-05-25 23:25:21 -07:00
|
|
|
Margin="8,0,0,0" />
|
2024-05-25 11:11:24 -07:00
|
|
|
</StackPanel>
|
2024-05-25 23:25:21 -07:00
|
|
|
</Grid>
|
2024-05-25 11:11:24 -07:00
|
|
|
</StackPanel>
|
|
|
|
</UserControl>
|