-
Notifications
You must be signed in to change notification settings - Fork 386
Expand file tree
/
Copy pathAddSubmodule.axaml
More file actions
67 lines (62 loc) · 2.8 KB
/
AddSubmodule.axaml
File metadata and controls
67 lines (62 loc) · 2.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<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"
mc:Ignorable="d" d:DesignWidth="500" d:DesignHeight="450"
x:Class="SourceGit.Views.AddSubmodule"
x:DataType="vm:AddSubmodule">
<StackPanel Orientation="Vertical" Margin="8,0">
<StackPanel Orientation="Horizontal">
<Path Width="16" Height="16"
Data="{StaticResource Icons.Submodule.Add}"/>
<TextBlock FontSize="18"
Margin="8,0,0,0"
Classes="bold"
Text="{DynamicResource Text.Submodule.Add}"/>
</StackPanel>
<Grid Margin="0,16,0,0" RowDefinitions="32,32,32" ColumnDefinitions="120,*">
<TextBlock Grid.Row="0" Grid.Column="0"
HorizontalAlignment="Right" VerticalAlignment="Center"
Margin="0,0,8,0"
Text="{DynamicResource Text.URL}"/>
<TextBox Grid.Row="0" Grid.Column="1"
Height="26"
VerticalAlignment="Center"
CornerRadius="3"
Watermark="{DynamicResource Text.RepositoryURL}"
Text="{Binding Url, Mode=TwoWay}">
<TextBox.InnerLeftContent>
<Path Width="12" Height="12"
Margin="4,0,2,0"
Data="{StaticResource Icons.Link}"
Fill="{DynamicResource Brush.FG1}"/>
</TextBox.InnerLeftContent>
<TextBox.InnerRightContent>
<v:RemoteProtocolSwitcher Url="{Binding Url, Mode=TwoWay}"/>
</TextBox.InnerRightContent>
</TextBox>
<TextBlock Grid.Row="1" Grid.Column="0"
HorizontalAlignment="Right" VerticalAlignment="Center"
Margin="0,0,8,0"
Text="{DynamicResource Text.Submodule.RelativePath}"/>
<TextBox Grid.Row="1" Grid.Column="1"
Height="26"
VerticalAlignment="Center"
CornerRadius="3"
Watermark="{DynamicResource Text.Submodule.RelativePath.Placeholder}"
Text="{Binding RelativePath, Mode=TwoWay}">
<TextBox.InnerLeftContent>
<Path Width="12" Height="12"
Margin="4,0,2,0"
Data="{StaticResource Icons.Folder.Open}"
Fill="{DynamicResource Brush.FG1}"/>
</TextBox.InnerLeftContent>
</TextBox>
<CheckBox Grid.Row="2" Grid.Column="1"
Content="{DynamicResource Text.Submodule.FetchNested}"
IsChecked="{Binding Recursive, Mode=TwoWay}"/>
</Grid>
</StackPanel>
</UserControl>