19 lines
922 B
XML
19 lines
922 B
XML
<UserControl x:Class="LANCommander.Playnite.Extension.PlayniteSettingsView"
|
|
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>
|
|
</StackPanel>
|
|
</UserControl> |