Files
EgtCAM5/OptionPanel/MachiningOptionPanel/OperationParametersExpander/OperationParametersExpanderV.xaml
T
2024-05-30 16:25:12 +02:00

21 lines
853 B
XML

<UserControl x:Class="OperationParametersExpanderV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel Name="OperationParametersExpanderViewStackPanel" IsEnabled="{Binding OperParamsViewIsEnabled}">
<Expander IsExpanded="{Binding ParametersIsExpanded}" Name="OperationParametersExpander"
Style="{StaticResource ExpanderStyle}" Padding="3">
<Expander.Header>
<TextBlock Text="{Binding ParametersExpanderName}"/>
</Expander.Header>
<!--ContentPresenter that contains the OperationParameters-->
<ContentPresenter Name="OperationParameters" Content="{Binding OperationParameters,Mode=OneWay}"/>
</Expander>
</StackPanel>
</UserControl>