15c919b0c6
-cambiato immagine bottone verifica tutti con rotazione -aggiunto pulsante aggiorna feature strategie in configurazione
28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
<Grid x:Class="LeftPanelV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
|
|
xmlns:OPTIMIZER="clr-namespace:EgtBEAMWALL.Optimizer"
|
|
Style="{StaticResource LeftPanel_Grid}">
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Border Grid.RowSpan="2"
|
|
Grid.ColumnSpan="2"
|
|
Style="{StaticResource Optimizer_Border}"/>
|
|
|
|
<OPTIMIZER:BTLPartListV Grid.Row="1"
|
|
x:Name="PartList"
|
|
DataContext="{StaticResource PartListVM}"
|
|
Tag="{Binding Tag, RelativeSource={RelativeSource AncestorType={x:Type OPTIMIZER:LeftPanelV}}}"
|
|
Margin="4,0,4,0"/>
|
|
|
|
</Grid>
|