mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
715 B
15 lines
715 B
<UserControl xmlns="https://github.com/avaloniaui" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:vm="using:TestPlugin" |
|
x:Class="TestPlugin.CustomOptionsView" |
|
x:DataType="vm:CustomOptionsViewModel"> |
|
<StackPanel Spacing="6" Margin="6"> |
|
<CheckBox IsChecked="{Binding Options.UselessOption1, Mode=TwoWay}" |
|
Content="A completely useless option" /> |
|
<StackPanel Orientation="Horizontal" Spacing="6"> |
|
<TextBlock Text="Another useless option:" VerticalAlignment="Center" /> |
|
<Slider Minimum="0" Maximum="100" Width="200" |
|
Value="{Binding Options.UselessOption2, Mode=TwoWay}" /> |
|
</StackPanel> |
|
</StackPanel> |
|
</UserControl>
|
|
|