21 lines
853 B
XML
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>
|