This example works for me - it can apply to what you are trying to do:
<ListBox x:Name="GroupListBox" Foreground="Purple"> <ListBox.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal" > <ListBox Foreground="{Binding Foreground, RelativeSource={RelativeSource Self}}"> <TextBox Text="{Binding Mode=OneWay}" FontSize="35" Foreground="{Binding Foreground, RelativeSource={RelativeSource Self}}" /> </ListBox> </StackPanel> </DataTemplate> </ListBox.ItemTemplate> <ListBox.ItemsSource> <x:Array Type="{x:Type sys:String}"> <sys:String>Sample Data</sys:String> </x:Array> </ListBox.ItemsSource> </ListBox>
source share