2024-02-05 23:08:37 -08:00
|
|
|
<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"
|
2024-04-02 01:23:47 -07:00
|
|
|
xmlns:v="using:SourceGit.Views"
|
2024-02-05 23:08:37 -08:00
|
|
|
xmlns:c="using:SourceGit.Converters"
|
|
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
|
|
x:Class="SourceGit.Views.RepositoryConfigure"
|
|
|
|
x:DataType="vm:RepositoryConfigure">
|
|
|
|
<StackPanel Orientation="Vertical" Margin="8,0">
|
|
|
|
<TextBlock FontSize="18"
|
2024-04-02 01:23:47 -07:00
|
|
|
Classes="bold"
|
|
|
|
Text="{DynamicResource Text.Configure}"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
|
|
|
|
<Grid Margin="0,16,0,0" RowDefinitions="32,32,32,32,32" ColumnDefinitions="150,*">
|
|
|
|
<TextBlock Grid.Column="0"
|
2024-04-02 01:23:47 -07:00
|
|
|
HorizontalAlignment="Right" VerticalAlignment="Center"
|
|
|
|
Margin="0,0,8,0"
|
|
|
|
Text="{DynamicResource Text.Configure.User}"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
<TextBox Grid.Column="1"
|
|
|
|
Height="28"
|
|
|
|
CornerRadius="3"
|
|
|
|
Watermark="{DynamicResource Text.Configure.User.Placeholder}"
|
2024-04-02 01:23:47 -07:00
|
|
|
Text="{Binding UserName, Mode=TwoWay}"
|
|
|
|
v:AutoFocusBehaviour.IsEnabled="True"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
|
|
|
|
<TextBlock Grid.Row="1" Grid.Column="0"
|
2024-04-02 01:23:47 -07:00
|
|
|
HorizontalAlignment="Right" VerticalAlignment="Center"
|
|
|
|
Margin="0,0,8,0"
|
|
|
|
Text="{DynamicResource Text.Configure.Email}"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
<TextBox Grid.Row="1" Grid.Column="1"
|
|
|
|
Height="28"
|
|
|
|
CornerRadius="3"
|
|
|
|
Watermark="{DynamicResource Text.Configure.Email.Placeholder}"
|
|
|
|
Text="{Binding UserEmail, Mode=TwoWay}"/>
|
|
|
|
|
|
|
|
<TextBlock Grid.Row="2" Grid.Column="0"
|
2024-04-02 01:23:47 -07:00
|
|
|
HorizontalAlignment="Right" VerticalAlignment="Center"
|
|
|
|
Margin="0,0,8,0"
|
|
|
|
Text="{DynamicResource Text.Configure.Proxy}"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
<TextBox Grid.Row="2" Grid.Column="1"
|
|
|
|
Height="28"
|
|
|
|
CornerRadius="3"
|
|
|
|
Watermark="{DynamicResource Text.Configure.Proxy.Placeholder}"
|
|
|
|
Text="{Binding HttpProxy, Mode=TwoWay}"/>
|
|
|
|
|
|
|
|
<TextBlock Grid.Row="3" Grid.Column="0"
|
2024-04-02 01:23:47 -07:00
|
|
|
HorizontalAlignment="Right" VerticalAlignment="Center"
|
|
|
|
Margin="0,0,8,0"
|
|
|
|
Text="{DynamicResource Text.Preference.GPG.Enabled}"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
<CheckBox Grid.Row="3" Grid.Column="1"
|
|
|
|
x:Name="chkGPGSigningEnabled"
|
|
|
|
IsChecked="{Binding GPGSigningEnabled, Mode=TwoWay}"/>
|
|
|
|
|
|
|
|
<TextBlock Grid.Row="4" Grid.Column="0"
|
2024-04-02 01:23:47 -07:00
|
|
|
HorizontalAlignment="Right" VerticalAlignment="Center"
|
|
|
|
Margin="0,0,8,0"
|
|
|
|
Text="{DynamicResource Text.Preference.GPG.UserKey}"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
<TextBox Grid.Row="4" Grid.Column="1"
|
|
|
|
Height="28"
|
|
|
|
CornerRadius="3"
|
|
|
|
Watermark="{DynamicResource Text.Preference.GPG.UserKey.Placeholder}"
|
|
|
|
Text="{Binding GPGUserSigningKey, Mode=TwoWay}"
|
|
|
|
IsEnabled="{Binding #chkGPGSigningEnabled.IsChecked}"/>
|
|
|
|
</Grid>
|
|
|
|
</StackPanel>
|
|
|
|
</UserControl>
|