Files
Demetrio Cassarino 0fb560a33b -sistemato merge errato
2024-03-13 16:50:40 +01:00

25 lines
1.1 KiB
XML

<UserControl x:Class="OperationParametersExpanderV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:Interactivity="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
xmlns:EgtCAM5="clr-namespace:EgtCAM5"
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5">
<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>