mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
38 lines
1.7 KiB
XML
38 lines
1.7 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:vm="using:SourceGit.ViewModels"
|
|
xmlns:v="using:SourceGit.Views"
|
|
xmlns:c="using:SourceGit.Converters"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="SourceGit.Views.Squash"
|
|
x:DataType="vm:Squash">
|
|
<StackPanel Orientation="Vertical" Margin="8,0">
|
|
<TextBlock FontSize="18"
|
|
Classes="bold"
|
|
Text="{DynamicResource Text.Squash}"/>
|
|
|
|
<Grid Margin="0,18,0,0" ColumnDefinitions="Auto,Auto,Auto,*">
|
|
<TextBlock Grid.Column="0"
|
|
Text="{DynamicResource Text.Squash.Into}"/>
|
|
<Path Grid.Column="1"
|
|
Margin="8,6,8,0"
|
|
Width="14" Height="14"
|
|
Fill="{DynamicResource Brush.FG1}"
|
|
Data="{StaticResource Icons.Commit}"/>
|
|
<TextBlock Grid.Column="2"
|
|
Classes="primary"
|
|
Text="{Binding Target.SHA, Converter={x:Static c:StringConverters.ToShortSHA}}"
|
|
Foreground="DarkOrange"/>
|
|
<TextBlock Grid.Column="3" Margin="8,0,0,0" Text="{Binding Target.Subject}" TextTrimming="CharacterEllipsis"/>
|
|
</Grid>
|
|
|
|
<v:CommitMessageTextBox Height="120" Margin="0,4,0,0" Text="{Binding Message, Mode=TwoWay}"/>
|
|
|
|
<TextBlock Margin="0,6,0,0"
|
|
Text="{DynamicResource Text.Reword.Tip}"
|
|
TextWrapping="Wrap"
|
|
Foreground="{DynamicResource Brush.FG2}"/>
|
|
</StackPanel>
|
|
</UserControl>
|