本帖最后由 youunknow 于 2010-04-04 17:25:48 编辑

解决方案 »

  1.   

    写一个方法,要粗体的时候就调用。
    比如:
       public void DrawString(System.Drawing.Graphics g,string str)
            {
                g.DrawString(str, new System.Drawing.Font(System.Drawing.FontFamily.GenericSerif, 12, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel), System.Drawing.Brushes.Blue, new System.Drawing.PointF());
            }
      

  2.   

    Font font = new Font("宋体",16,FontStyle.Bold);
      

  3.   

    高分招募中 continue ...