mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
69 lines
2.6 KiB
Text
69 lines
2.6 KiB
Text
|
<controls:PopupWidget
|
||
|
x:Class="SourceGit.Views.Popups.SubTreePush"
|
||
|
x:Name="me"
|
||
|
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:controls="clr-namespace:SourceGit.Views.Controls"
|
||
|
xmlns:validations="clr-namespace:SourceGit.Views.Validations"
|
||
|
mc:Ignorable="d"
|
||
|
d:DesignHeight="450" d:DesignWidth="800">
|
||
|
<Grid>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="32"/>
|
||
|
<RowDefinition Height="32"/>
|
||
|
<RowDefinition Height="32"/>
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="150"/>
|
||
|
<ColumnDefinition Width="*"/>
|
||
|
</Grid.ColumnDefinitions>
|
||
|
|
||
|
<TextBlock
|
||
|
Grid.Row="0" Grid.Column="0"
|
||
|
Margin="0,0,8,0"
|
||
|
Text="{StaticResource Text.SubTreePullOrPush.Prefix}"
|
||
|
HorizontalAlignment="Right"/>
|
||
|
<StackPanel
|
||
|
Grid.Row="0" Grid.Column="1"
|
||
|
Orientation="Horizontal"
|
||
|
VerticalAlignment="Center">
|
||
|
<Path Width="14" Height="14" Data="{StaticResource Icon.SubTree}"/>
|
||
|
<TextBlock x:Name="txtPrefix" Margin="8,0,0,0"/>
|
||
|
</StackPanel>
|
||
|
|
||
|
<TextBlock
|
||
|
Grid.Row="1" Grid.Column="0"
|
||
|
Margin="0,0,8,0"
|
||
|
Text="{StaticResource Text.SubTreePullOrPush.Source}"
|
||
|
HorizontalAlignment="Right"/>
|
||
|
<StackPanel
|
||
|
Grid.Row="1" Grid.Column="1"
|
||
|
Orientation="Horizontal"
|
||
|
VerticalAlignment="Center">
|
||
|
<Path Width="14" Height="14" Data="{StaticResource Icon.Remote}"/>
|
||
|
<TextBlock x:Name="txtSource" Margin="8,0,0,0"/>
|
||
|
</StackPanel>
|
||
|
|
||
|
<TextBlock
|
||
|
Grid.Row="2" Grid.Column="0"
|
||
|
Margin="0,0,8,0"
|
||
|
Text="{StaticResource Text.SubTreePullOrPush.Branch}"
|
||
|
HorizontalAlignment="Right"/>
|
||
|
<controls:TextEdit
|
||
|
Grid.Row="2" Grid.Column="1"
|
||
|
x:Name="txtBranch"
|
||
|
Height="24">
|
||
|
<controls:TextEdit.Text>
|
||
|
<Binding ElementName="me" Path="Branch" UpdateSourceTrigger="PropertyChanged" Mode="TwoWay">
|
||
|
<Binding.ValidationRules>
|
||
|
<validations:Required/>
|
||
|
</Binding.ValidationRules>
|
||
|
</Binding>
|
||
|
</controls:TextEdit.Text>
|
||
|
</controls:TextEdit>
|
||
|
</Grid>
|
||
|
</controls:PopupWidget>
|