WinForms DataGridView font size

前端 未结 10 1837
半阙折子戏
半阙折子戏 2020-12-09 07:47

How do I change font size on the DataGridView?

10条回答
  •  攒了一身酷
    2020-12-09 08:18

    I think it's easiest:

    First set any Label as you like (Italic, Bold, Size etc.) And:

    yourDataGridView.Font = anyLabel.Font;
    

提交回复
热议问题