6233d89e0f
- primo rilascio.
19 lines
902 B
XML
19 lines
902 B
XML
<UserControl x:Class="InputExpanderView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<Expander Header="{Binding Title}" IsExpanded="{Binding IsExpanded}" IsEnabled="{Binding }" Grid.Row="2">
|
|
<StackPanel>
|
|
|
|
<TextBlock Text="{Binding TextBlock}"/>
|
|
<TextBox Text="{Binding TextBox}" FocusManager.FocusedElement="{Binding }"/>
|
|
<CheckBox Content="{Binding CheckBoxText}"/>
|
|
<ComboBox ItemsSource="{Binding ComboItemsList}" SelectedIndex="{Binding ComboSelectedItem}"/>
|
|
<UniformGrid>
|
|
<Button Visibility="{Binding ShowVisibility}" Content="Show" Style="{StaticResource EgtCAM5_Button}"/>
|
|
<Button Content="Done" Style="{StaticResource EgtCAM5_Button}"/>
|
|
</UniformGrid>
|
|
</StackPanel>
|
|
</Expander>
|
|
</UserControl>
|