23 lines
952 B
XML
23 lines
952 B
XML
<ListBox x:Class="StrategyProductionListV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:Optmizer="clr-namespace:EgtBEAMWALL.Optimizer"
|
|
ItemsSource="{Binding StrategyProductionList}"
|
|
SelectedItem="{Binding SelectedStrategyParamList}"
|
|
Width="Auto"
|
|
Height="Auto"
|
|
Style="{StaticResource NewAddFeature_ListBox}">
|
|
<ListBox.Resources>
|
|
<DataTemplate DataType="{x:Type Optmizer:Strategy}">
|
|
<StackPanel Orientation="Horizontal">
|
|
<Image Source="{Binding sImageStrategy}"
|
|
Stretch="Uniform"
|
|
Width="75"
|
|
Height="75"/>
|
|
<TextBlock Text="{Binding sStrategyID}"
|
|
Style="{StaticResource DialogWindow_TextBlock}"/>
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</ListBox.Resources>
|
|
</ListBox>
|