与编译版本相比,Windows窗体编辑器中的C#columnheader外观有所不同

时间:2018-07-15 04:02:42

标签: c# windows-forms-designer

我是C#的新手,并且我正在检测gui :(项目。 标题怎么说,相比于编译版本,特别是字体,看着Windows窗体编辑器的列标题是不同的。

PS:EnableHeadersVisualStyle属性已经设置为false。

编辑器外观 visual studio gui editor

编译版本 visual studio gui editor

我尝试在属性窗格以及构造函数中设置所需的属性。

    public Historial()
    {
        InitializeComponent();
        var font = SystemFonts.GetFontByName("Century Gothic");
        dataGridView1.ColumnHeadersDefaultCellStyle.Font = font;
        if (font == null)
        {
            MessageBox.Show("Null","Null");

        }

    }

变量“ font”返回null,因为找不到系统字体:(

我希望有人能帮助我。谢谢回答

0 个答案:

没有答案