Clyde Eisenbeis

Clyde Eisenbeis

  • 1.6k
  • 63
  • 8.3k

How do I set ListBox item font to bold? - Continued #2

May 16 2024 3:36 PM

C# wpf --- This is a "continuation" of c-sharpcorner.com/forums/how-do-i-set-listbox-item-font-to-bold.

<ListBox x:Name="gLBx"
    Margin="5,0,5,0"
    Foreground="#FF0000"
    FontWeight="Bold"/>

This does not change the font to bold.

<ListBox x:Name="gLBx" 
    Margin="5,0,5,0" 
    Foreground="#FF0000">
    <ListBox.ItemContainerStyle>
        <Style TargetType="ListBoxItem">
            <Setter Property="FontWeight" Value="Bold"/>
        </Style>
    </ListBox.ItemContainerStyle>
</ListBox>

This, also, does not change the font to bold.


Answers (2)