2023-01-04 19:23:32 -06:00
|
|
|
<UserControl x:Class="LANCommander.Playnite.Extension.PlayniteSettingsView"
|
2023-01-05 01:07:17 -06: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"
|
|
|
|
xmlns:sys="clr-namespace:System;assembly=mscorlib"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
d:DesignHeight="400" d:DesignWidth="600">
|
|
|
|
<d:DesignerProperties.DesignStyle>
|
|
|
|
<Style TargetType="UserControl">
|
|
|
|
<Setter Property="Background" Value="White" />
|
|
|
|
</Style>
|
|
|
|
</d:DesignerProperties.DesignStyle>
|
|
|
|
<StackPanel Margin="20">
|
|
|
|
<TextBlock Text="LANCommander Server URL"/>
|
|
|
|
<TextBox Text="{Binding ServerUrl}"/>
|
|
|
|
<Button Click="AuthenticateButton_Click" Name="AuthenticateButton">Authenticate</Button>
|
2023-01-04 19:23:32 -06:00
|
|
|
</StackPanel>
|
|
|
|
</UserControl>
|