其他分享
首页 > 其他分享> > 在dataGridView控件上加载数据时显示自定义字符

在dataGridView控件上加载数据时显示自定义字符

作者:互联网

private void dataGridView_Paint(object sender, PaintEventArgs e) {
if (ShowLoading)
{
     e.Graphics.DrawString("数据加载中", new Font("Arial", 20), Brushes.Black, 20, this.dataGridViewPCBS.Height / 2);
}
}

标签:控件,Arial,自定义,dataGridView,20,加载
来源: https://www.cnblogs.com/zeroone/p/12240457.html