将字体(Font)设置为宋体;
Sample:protected override void OnPaint(PaintEventArgs pe)
{ pe.Graphics.DrawString("* ",new Font("宋体",11),System.Drawing.Brushes.Tomato,this.Width - 15,(this.Height -11)/2);

base.OnPaint(pe);
}