如何更改columnheader字体

时间:2017-12-28 15:32:08

标签: c# vb.net

我正在尝试创建一个学生信息系统,如图所示。
ListView的标题和项目字体是相同的。我想更改标题字体,但是当我更改标题时,项目也在变化。

clicktosee

2 个答案:

答案 0 :(得分:2)

这是VB.NET的一个例子。

OwnerDraw的{​​{1}} - 属性设置为ListView,然后使用以下代码:

True

来源:https://social.msdn.microsoft.com

答案 1 :(得分:0)

我们应该将此代码添加到Work中:


Private Sub Frm_Load(sender As Object, e As EventArgs) 
        ListView1.OwnerDraw = True
End Sub