mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07: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.
39 lines
1.9 KiB
XML
39 lines
1.9 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:m="using:SourceGit.Models"
|
|
xmlns:vm="using:SourceGit.ViewModels"
|
|
xmlns:c="using:SourceGit.Converters"
|
|
mc:Ignorable="d" d:DesignWidth="500" d:DesignHeight="450"
|
|
x:Class="SourceGit.Views.GitFlowFinish"
|
|
x:DataType="vm:GitFlowFinish">
|
|
<StackPanel Orientation="Vertical" Margin="8,0">
|
|
<TextBlock FontSize="18"
|
|
Classes="bold"
|
|
Text="{DynamicResource Text.GitFlow.FinishFeature}"
|
|
IsVisible="{Binding IsFeature}"/>
|
|
<TextBlock FontSize="18"
|
|
Classes="bold"
|
|
Text="{DynamicResource Text.GitFlow.FinishRelease}"
|
|
IsVisible="{Binding IsRelease}"/>
|
|
<TextBlock FontSize="18"
|
|
Classes="bold"
|
|
Text="{DynamicResource Text.GitFlow.FinishHotfix}"
|
|
IsVisible="{Binding IsHotfix}"/>
|
|
<Grid Margin="0,16,0,0" RowDefinitions="32,32" ColumnDefinitions="150,*">
|
|
<TextBlock Grid.Column="0"
|
|
HorizontalAlignment="Right" VerticalAlignment="Center"
|
|
Margin="0,0,8,0"
|
|
Text="{DynamicResource Text.GitFlow.FinishTarget}"/>
|
|
<StackPanel Grid.Column="1" Orientation="Horizontal">
|
|
<Path Width="14" Height="14" Data="{StaticResource Icons.Branch}"/>
|
|
<TextBlock Text="{Binding Branch.Name}" Margin="8,0,0,0"/>
|
|
</StackPanel>
|
|
|
|
<CheckBox Grid.Row="1" Grid.Column="1"
|
|
Content="{DynamicResource Text.GitFlow.KeepBranchAfterFinish}"
|
|
IsChecked="{Binding KeepBranch, Mode=TwoWay}"/>
|
|
</Grid>
|
|
</StackPanel>
|
|
</UserControl>
|