I'm trying to change the FontFamily
of a ListBox
to a fixed-width font, but I don't know what's available. Here's what I have:
<ListBox Margin="12,55,12,12" Name="listBox1" FontFamily="Arial" />
When I try something like FontFamily="Courier"
, it won't show up as Courier, which leads me to believe that font may not be available. I've tried searching for the last 10 minutes, but I can't find a list of fonts that I can use by default in WPF.