9c9b00d661
-aggiunto salvataggio, salvataggio con nome
26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<ListBox x:Class="ActiveStrategyListBoxV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:Optmizer="clr-namespace:EgtBEAMWALL.Optimizer"
|
|
Name="ActiveStrategyListBox"
|
|
ItemsSource="{Binding ActiveStrategyList, Mode=TwoWay}"
|
|
SelectedItem="{Binding SelectedActiveStrategy, Mode=TwoWay}"
|
|
Width="Auto"
|
|
Height="Auto"
|
|
IsSynchronizedWithCurrentItem="True"
|
|
PreviewMouseDown="ActiveStrategyList_PreviewMouseDown"
|
|
Style="{StaticResource NewAddFeature_ListBox}">
|
|
<ListBox.Resources>
|
|
<DataTemplate DataType="{x:Type Optmizer:Strategy}">
|
|
<StackPanel Orientation="Horizontal">
|
|
<Image Source="{Binding sImageStrategy}"
|
|
Stretch="Uniform"
|
|
Width="100"
|
|
Height="100"/>
|
|
<TextBlock Text="{Binding sStrategyID}"
|
|
Style="{StaticResource DialogWindow_TextBlock}"/>
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</ListBox.Resources>
|
|
</ListBox>
|