9c9b00d661
-aggiunto salvataggio, salvataggio con nome
52 lines
1.9 KiB
XML
52 lines
1.9 KiB
XML
<Grid x:Class="StrategyV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Width="800"
|
|
Height="900"
|
|
xmlns:Optmizer="clr-namespace:EgtBEAMWALL.Optimizer">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Border Margin="2,0,2,0"
|
|
Style="{StaticResource OnlyProdPage_Border}">
|
|
<Optmizer:DeactivateStrategyListBoxV/>
|
|
</Border>
|
|
|
|
<StackPanel Grid.Column="1"
|
|
Orientation="Vertical"
|
|
VerticalAlignment="Center">
|
|
<Button Content="→"
|
|
Command="{Binding AddSelectedStrategyCommand}"
|
|
Style="{StaticResource Strategy_Button}"/>
|
|
<Button Content="←"
|
|
Command="{Binding RemoveSelectedStrategyCommand}"
|
|
Style="{StaticResource Strategy_Button}"/>
|
|
</StackPanel>
|
|
|
|
<Border Grid.Column="2"
|
|
Margin="2,0,2,0"
|
|
Style="{StaticResource OnlyProdPage_Border}">
|
|
<Optmizer:ActiveStrategyListBoxV/>
|
|
</Border>
|
|
|
|
<StackPanel Grid.Column="3"
|
|
Orientation="Vertical"
|
|
VerticalAlignment="Center">
|
|
<Button Command="{Binding MoveUpSelectedStrategyCommand}"
|
|
IsEnabled="{Binding MoveUpSelectedStrategyEnable}"
|
|
Style="{StaticResource Strategy_Button}">
|
|
<Image Source="/Resources/TopPanel/MoveUpPart.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding MoveDownSelectedStrategyCommand}"
|
|
IsEnabled="{Binding MoveDownSelectedStrategyEnable}"
|
|
Style="{StaticResource Strategy_Button}">
|
|
<Image Source="/Resources/TopPanel/MoveDownPart.png" Stretch="Uniform"/>
|
|
</Button>
|
|
</StackPanel>
|
|
</Grid>
|