36 lines
2.0 KiB
XML
36 lines
2.0 KiB
XML
<UserControl x:Class="MachiningOptionPanelV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtCAM5="clr-namespace:EgtCAM5"
|
|
xmlns:EgtFloating="clr-namespace:EgtWPFLib5.EgtFloating;assembly=EgtWPFLib5">
|
|
|
|
<Grid x:Name="MachiningGrid" Background="Transparent" MaxHeight="{Binding MaxHeight,RelativeSource={RelativeSource AncestorType={x:Type EgtFloating:EgtFloatingPanel}}}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition MinHeight="0" Height="350" MaxHeight="800" EgtCAM5:MachiningOptionPanelVM.IsExpanded="{Binding OperationsListRowIsExpanded}"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<!--ContentPresenter that contains the OperationsListExpander-->
|
|
<ContentPresenter Content="{Binding OperationsListExpander,Mode=OneWay}"/>
|
|
<GridSplitter Name="MachiningGridSplitter" Style="{StaticResource General_GridSplitter}"/>
|
|
<!--ContentPresenter that contains the OperationParametersExpander-->
|
|
<ContentPresenter Grid.Row="1" Content="{Binding OperationParametersExpander,Mode=OneWay}"/>
|
|
<!--ContentPresenter that contains the MachiningsTreeExpander-->
|
|
<ContentPresenter Grid.Row="2" Content="{Binding MachiningsTreeExpander}"/>
|
|
<!--ContentPresenter that contains the SimulationExpander-->
|
|
<ContentPresenter Grid.Row="3" Content="{Binding SimulationExpander}"/>
|
|
<!--ContentPresenter that contains the EstimationsExpander-->
|
|
<ContentPresenter Grid.Row="4" Content="{Binding EstimationsExpander}"/>
|
|
|
|
<Button Grid.Row="5"
|
|
Content="{Binding GenerateMsg}" Height="30"
|
|
IsEnabled="{Binding GenerateIsEnabled}"
|
|
Command="{Binding GenerateCommand}"/>
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|