Files
EgtCAM5/ProjectPage/OptionPanel/DrawOptionPanel/InputExpander/InputExpanderView.xaml
T
Emmanuele Sassi 6233d89e0f EgtCAM5 :
- primo rilascio.
2016-07-06 09:46:23 +00:00

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>