I get a stackoverflow exception on following commented line.
namespace Football_Manager_WFA
{
public partial class Settings : Form
{
Color def_bgdColor = SystemColors.Control;
Color def_fontColor = Color.Black; // ERROR
static FontFamily fontFamily = FontFamily.GenericSansSerif;
Font def_fontType = new Font(fontFamily, 8.0f);
}
}