20 lines
884 B
XML
20 lines
884 B
XML
<ItemsControl x:Class="ParameterStrategyV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Foreground="Black"
|
|
Width="900"
|
|
xmlns:Optmizer="clr-namespace:EgtBEAMWALL.Optimizer"
|
|
ItemsSource="{Binding SelectedStrategyParamList.ParameterList}">
|
|
|
|
<ItemsControl.Resources>
|
|
<DataTemplate DataType="{x:Type Optmizer:GenericParameter}">
|
|
<UniformGrid Columns="2">
|
|
<TextBlock Text="{Binding sName}" HorizontalAlignment="Left"
|
|
Style="{StaticResource DialogWindow_TextBlock}"/>
|
|
<TextBox Text="{Binding sValue}"
|
|
Style="{StaticResource ColorPicker_TextBox}"/>
|
|
</UniformGrid>
|
|
</DataTemplate>
|
|
</ItemsControl.Resources>
|
|
</ItemsControl>
|