我在下面的注释行中得到一个 stackoverflow 异常。
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); // ERROR
}
}