mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-10-31 13:03:20 -07:00
108 lines
5 KiB
XML
108 lines
5 KiB
XML
<UserControl x:Class="SourceGit.UI.Push"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:git="clr-namespace:SourceGit.Git"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="248" d:DesignWidth="500" Height="248" Width="500">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="32"/>
|
|
<RowDefinition Height="16"/>
|
|
<RowDefinition Height="32"/>
|
|
<RowDefinition Height="32"/>
|
|
<RowDefinition Height="32"/>
|
|
<RowDefinition Height="28"/>
|
|
<RowDefinition Height="28"/>
|
|
<RowDefinition Height="16"/>
|
|
<RowDefinition Height="32"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="150"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Grid.Row="0" Grid.ColumnSpan="2" FontWeight="DemiBold" FontSize="18" Content="Push Changes To Remote"/>
|
|
|
|
<Label Grid.Row="2" Grid.Column="0" HorizontalAlignment="Right" VerticalAlignment="Center" Content="Local Branch :"/>
|
|
<ComboBox Grid.Row="2" Grid.Column="1"
|
|
x:Name="combLocalBranches"
|
|
VerticalAlignment="Center"
|
|
SelectionChanged="LocalBranchesSelectionChanged">
|
|
<ComboBox.ItemTemplate>
|
|
<DataTemplate DataType="{x:Type git:Branch}">
|
|
<StackPanel Orientation="Horizontal" Height="20">
|
|
<Path Margin="4,0,0,0" Style="{StaticResource Style.Icon}" Data="{StaticResource Icon.Branch}"/>
|
|
<Label Content="{Binding Name}" Padding="8,0,0,0"/>
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</ComboBox.ItemTemplate>
|
|
</ComboBox>
|
|
|
|
<Label Grid.Row="3" Grid.Column="0" HorizontalAlignment="Right" VerticalAlignment="Center" Content="Remote :"/>
|
|
<ComboBox Grid.Row="3" Grid.Column="1"
|
|
x:Name="combRemotes"
|
|
VerticalAlignment="Center"
|
|
SelectionChanged="RemotesSelectionChanged">
|
|
<ComboBox.ItemTemplate>
|
|
<DataTemplate>
|
|
<StackPanel Orientation="Horizontal" Height="20">
|
|
<Path Margin="4,0,0,0" Style="{StaticResource Style.Icon}" Data="{StaticResource Icon.Remote}"/>
|
|
<Label Content="{Binding}" Padding="8,0,0,0"/>
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</ComboBox.ItemTemplate>
|
|
</ComboBox>
|
|
|
|
<Label Grid.Row="4" Grid.Column="0" HorizontalAlignment="Right" VerticalAlignment="Center" Content="To :"/>
|
|
<ComboBox Grid.Row="4" Grid.Column="1"
|
|
x:Name="combRemoteBranches"
|
|
VerticalAlignment="Center">
|
|
<ComboBox.ItemTemplate>
|
|
<DataTemplate>
|
|
<StackPanel Orientation="Horizontal" Height="20">
|
|
<Path Margin="4,0,0,0" Style="{StaticResource Style.Icon}" Data="{StaticResource Icon.Branch}"/>
|
|
<Label Content="{Binding}" Padding="8,0,0,0"/>
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</ComboBox.ItemTemplate>
|
|
</ComboBox>
|
|
|
|
<CheckBox Grid.Row="5" Grid.Column="1"
|
|
x:Name="chkTags"
|
|
VerticalAlignment="Center"
|
|
Content="Push all tags"/>
|
|
|
|
<CheckBox Grid.Row="6" Grid.Column="1"
|
|
x:Name="chkForce"
|
|
VerticalAlignment="Center"
|
|
Content="Force push"/>
|
|
|
|
<Grid Grid.Row="8" Grid.ColumnSpan="2">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="80"/>
|
|
<ColumnDefinition Width="8"/>
|
|
<ColumnDefinition Width="80"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Button Grid.Column="1" Click="Start" Content="SURE" Style="{StaticResource Style.Button.AccentBordered}"/>
|
|
<Button Grid.Column="3" Click="Cancel" Content="CANCEL" Style="{StaticResource Style.Button.Bordered}"/>
|
|
</Grid>
|
|
|
|
<Grid Grid.Row="0" Grid.RowSpan="9" Grid.ColumnSpan="2" x:Name="status" Visibility="Collapsed" Background="{StaticResource Brush.BG1}" Opacity=".9">
|
|
<StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<Path x:Name="statusIcon" Width="48" Height="48" Style="{StaticResource Style.Icon}" Data="{StaticResource Icon.Loading}" RenderTransformOrigin=".5,.5">
|
|
<Path.RenderTransform>
|
|
<RotateTransform Angle="0"/>
|
|
</Path.RenderTransform>
|
|
</Path>
|
|
|
|
<Label x:Name="statusMsg" Margin="0,8,0,0"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Grid>
|
|
</UserControl>
|
|
|