14 lines
No EOL
736 B
XML
14 lines
No EOL
736 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"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="400" d:DesignWidth="600">
|
|
<StackPanel>
|
|
<TextBlock Text="Description for Option1:"/>
|
|
<TextBox Text="{Binding Settings.Option1}"/>
|
|
<TextBlock Text="Description for Option2:"/>
|
|
<CheckBox IsChecked="{Binding Settings.Option2}"/>
|
|
</StackPanel>
|
|
</UserControl> |