71c9815296
-sitemata forzatura parametri generali -sistemato tabelle supervisore
26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
<Grid x:Class="LeftPanelBottomV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:OPTIMIZER="clr-namespace:EgtBEAMWALL.Optimizer"
|
|
Style="{StaticResource Left_Grid}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Border Grid.ColumnSpan="2"
|
|
Style="{StaticResource Optimizer_Border}"/>
|
|
|
|
<WrapPanel Grid.Column="1"
|
|
Width="{Binding ActualWidth}"
|
|
Style="{StaticResource Bottom_WrapPanel}">
|
|
<OPTIMIZER:InstrumentPanelV DataContext="{StaticResource InstrumentPanelVM}"/>
|
|
<OPTIMIZER:ShowPanelV DataContext="{StaticResource ShowPanelVM}"/>
|
|
<OPTIMIZER:ShowBeamPanelV DataContext="{StaticResource ShowBeamPanelVM}"
|
|
Visibility="{Binding DataContext.ShowBeamPanel_Visibility, RelativeSource={RelativeSource AncestorType={x:Type OPTIMIZER:LeftPanelBottomV}}}"/>
|
|
<OPTIMIZER:ViewPanelV DataContext="{StaticResource ViewPanelVM}"/>
|
|
</WrapPanel>
|
|
|
|
<OPTIMIZER:SceneHostV Margin="4,4,0,4"/>
|
|
</Grid>
|