Hi,
You can set the style for the ItemTemplate of the ListBox in the CollectionControl. Here's how :
You can set the style for the ItemTemplate of the ListBox in the CollectionControl. Here's how :
<xctk:CollectionControl Height="240"
HorizontalAlignment="Left"
Name="CollectionControl1"
VerticalAlignment="Top"
Width="479">
<xctk:CollectionControl.Style>
<Style TargetType="xctk:CollectionControl">
<Style.Resources>
<Style TargetType="ListBox">
<Setter Property="ItemTemplate">
<Setter.Value>
<DataTemplate>
<TextBlock Text="{Binding LWEmissivityOut}"
Background="LightGreen" />
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
</Style.Resources>
</Style>
</xctk:CollectionControl.Style>
</xctk:CollectionControl>