2023-01-14 21:19:14 +00:00
|
|
|
<UserControl x:Class="LANCommander.PlaynitePlugin.LANCommanderSettingsView"
|
2023-01-05 07:07:17 +00:00
|
|
|
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"
|
2023-01-14 21:16:13 +00:00
|
|
|
xmlns:sys="clr-namespace:System;assembly=mscorlib" xmlns:playniteplugin="clr-namespace:LANCommander.PlaynitePlugin" d:DataContext="{d:DesignInstance Type=playniteplugin:LANCommanderSettingsViewModel}"
|
2023-01-12 02:48:39 +00:00
|
|
|
mc:Ignorable="d"
|
2023-01-05 07:07:17 +00:00
|
|
|
d:DesignHeight="400" d:DesignWidth="600">
|
|
|
|
<d:DesignerProperties.DesignStyle>
|
|
|
|
<Style TargetType="UserControl">
|
|
|
|
<Setter Property="Background" Value="White" />
|
|
|
|
</Style>
|
|
|
|
</d:DesignerProperties.DesignStyle>
|
2023-01-12 02:48:39 +00:00
|
|
|
<Grid Margin="20">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="auto" />
|
2023-11-03 05:07:20 +00:00
|
|
|
<RowDefinition Height="auto" />
|
|
|
|
<RowDefinition Height="auto" />
|
2023-01-12 02:48:39 +00:00
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
<Grid Grid.Row="0">
|
|
|
|
<Grid.ColumnDefinitions>
|
2023-11-03 05:07:20 +00:00
|
|
|
<ColumnDefinition Width="100" />
|
2023-01-12 02:48:39 +00:00
|
|
|
<ColumnDefinition Width="10" />
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
<ColumnDefinition Width="10" />
|
2023-11-03 05:07:20 +00:00
|
|
|
<ColumnDefinition Width="75" />
|
2023-01-12 02:48:39 +00:00
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Grid.Column="0" Content="Install Directory" />
|
|
|
|
<TextBox Name="PART_InstallDirectory" Grid.Column="2" Text="{Binding InstallDirectory}" />
|
|
|
|
<Button Grid.Column="4" Content="Browse" Click="SelectInstallDirectory_Click" VerticalAlignment="Center" Grid.ColumnSpan="2" />
|
|
|
|
</Grid>
|
2023-11-03 05:07:20 +00:00
|
|
|
|
|
|
|
<Grid Grid.Row="1" Margin="0,10,0,0">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="100" />
|
|
|
|
<ColumnDefinition Width="10" />
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
<ColumnDefinition Width="10" />
|
|
|
|
<ColumnDefinition Width="75" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<Label Grid.Column="0" Content="Server Address" />
|
|
|
|
<TextBox Name="PART_ServerAddress" Grid.Column="2" Text="{Binding ServerAddress}" IsEnabled="false" />
|
|
|
|
</Grid>
|
2023-01-12 02:48:39 +00:00
|
|
|
|
2023-11-03 05:07:20 +00:00
|
|
|
<Grid Grid.Row="2" Margin="0,10,0,0">
|
2023-01-12 02:48:39 +00:00
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="auto" />
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<Button Name="PART_AuthenticationButton" Content="Authenticate" Grid.Column="0" Click="AuthenticateButton_Click" VerticalAlignment="Center" />
|
2023-11-03 05:07:20 +00:00
|
|
|
<Button Name="PART_DisconnectButton" Content="Disconnect" Grid.Column="0" Click="DisconnectButton_Click" VerticalAlignment="Center" />
|
|
|
|
<Label Name="PART_AuthenticateLabel" Margin="20,0,0,0" VerticalAlignment="Center" Grid.Column="3" />
|
2023-01-12 02:48:39 +00:00
|
|
|
</Grid>
|
|
|
|
</Grid>
|
2023-01-05 01:23:32 +00:00
|
|
|
</UserControl>
|