|
2 | 2 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
3 | 3 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
4 | 4 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
5 | | - xmlns:m="using:SourceGit.Models" |
6 | 5 | xmlns:vm="using:SourceGit.ViewModels" |
7 | 6 | xmlns:v="using:SourceGit.Views" |
8 | 7 | mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" |
|
11 | 10 | <StackPanel Orientation="Vertical" Margin="8,0,0,0"> |
12 | 11 | <TextBlock Classes="bold" FontSize="18" Text="{DynamicResource Text.Clone}"/> |
13 | 12 |
|
14 | | - <Grid Margin="8,16,0,0" Height="28" ColumnDefinitions="120,*"> |
| 13 | + <Grid Margin="8,16,0,0" Height="28" ColumnDefinitions="140,*"> |
15 | 14 | <TextBlock Grid.Column="0" HorizontalAlignment="Right" Margin="0,0,8,0" Text="{DynamicResource Text.Clone.RemoteURL}"/> |
16 | 15 | <TextBox Grid.Column="1" CornerRadius="3" Text="{Binding Remote, Mode=TwoWay}" v:AutoFocusBehaviour.IsEnabled="True"/> |
17 | 16 | </Grid> |
18 | | - <Grid Margin="8,4,0,0" Height="28" ColumnDefinitions="120,*" IsVisible="{Binding UseSSH}"> |
| 17 | + <Grid Margin="8,4,0,0" Height="28" ColumnDefinitions="140,*" IsVisible="{Binding UseSSH}"> |
19 | 18 | <TextBlock Grid.Column="0" HorizontalAlignment="Right" Margin="0,0,8,0" Text="{DynamicResource Text.SSHKey}"/> |
20 | 19 | <TextBox Grid.Column="1" |
21 | | - x:Name="txtSSHKey" |
| 20 | + x:Name="TxtSshKey" |
22 | 21 | Height="28" |
23 | 22 | CornerRadius="3" |
24 | 23 | Watermark="{DynamicResource Text.SSHKey.Placeholder}" |
|
30 | 29 | </TextBox.InnerRightContent> |
31 | 30 | </TextBox> |
32 | 31 | </Grid> |
33 | | - <Grid Margin="8,4,0,0" Height="28" ColumnDefinitions="120,*"> |
| 32 | + <Grid Margin="8,4,0,0" Height="28" ColumnDefinitions="140,*"> |
34 | 33 | <TextBlock Grid.Column="0" HorizontalAlignment="Right" Margin="0,0,8,0" Text="{DynamicResource Text.Clone.ParentFolder}"/> |
35 | 34 | <TextBox Grid.Column="1" |
36 | | - x:Name="txtParentFolder" |
| 35 | + x:Name="TxtParentFolder" |
37 | 36 | Height="28" |
38 | 37 | CornerRadius="3" |
39 | 38 | Text="{Binding ParentFolder, Mode=TwoWay}"> |
|
44 | 43 | </TextBox.InnerRightContent> |
45 | 44 | </TextBox> |
46 | 45 | </Grid> |
47 | | - <Grid Margin="8,4,0,0" Height="28" ColumnDefinitions="120,*"> |
| 46 | + <Grid Margin="8,4,0,0" Height="28" ColumnDefinitions="140,*"> |
48 | 47 | <TextBlock Grid.Column="0" HorizontalAlignment="Right" Margin="0,0,8,0" Text="{DynamicResource Text.Clone.LocalName}"/> |
49 | 48 | <TextBox Grid.Column="1" CornerRadius="3" Watermark="{DynamicResource Text.Clone.LocalName.Placeholder}" Text="{Binding Local, Mode=TwoWay}"/> |
50 | 49 | </Grid> |
51 | | - <Grid Margin="8,4,0,0" Height="28" ColumnDefinitions="120,*"> |
| 50 | + <Grid Margin="8,4,0,0" Height="28" ColumnDefinitions="140,*"> |
52 | 51 | <TextBlock Grid.Column="0" HorizontalAlignment="Right" Margin="0,0,8,0" Text="{DynamicResource Text.Clone.AdditionalParam}"/> |
53 | 52 | <TextBox Grid.Column="1" CornerRadius="3" Watermark="{DynamicResource Text.Clone.AdditionalParam.Placeholder}" Text="{Binding ExtraArgs, Mode=TwoWay}"/> |
54 | 53 | </Grid> |
|
0 commit comments