|
|
@@ -68,5 +68,14 @@
|
|
|
</ContentControl>
|
|
|
</StackPanel>
|
|
|
</TabItem>
|
|
|
+ <TabItem Header="Commands">
|
|
|
+ <StackPanel Margin="18" Gap="4" Width="200">
|
|
|
+ <Button Content="Button" Command="{Binding StringValueCommand}" CommandParameter="Button"/>
|
|
|
+ <ToggleButton Content="ToggleButton" Command="{Binding StringValueCommand}" CommandParameter="ToggleButton"/>
|
|
|
+ <CheckBox Content="CheckBox" Command="{Binding StringValueCommand}" CommandParameter="CheckBox"/>
|
|
|
+ <RadioButton Content="RadionButton" Command="{Binding StringValueCommand}" CommandParameter="RadioButton"/>
|
|
|
+ <TextBox Text="{Binding Path=StringValue}"/>
|
|
|
+ </StackPanel>
|
|
|
+ </TabItem>
|
|
|
</TabControl>
|
|
|
</Window>
|