Font font = new Font( ?????? );

解决方案 »

  1.   

    Font font = new Font("宋体", 9, 
        FontStyle.Bold | FontStyle.Italic | FontStyle.Underline);
      

  2.   

     Font font = new Font("Arial", 12, (System.Drawing.FontStyle.Italic | System.Drawing.FontStyle.Bold));
      

  3.   

    伴水好快...木看到加下划线..FontStyle.Underline
      

  4.   

    new Font("Arial", 24, FontStyle.Bold | FontStyle.Underline);
      

  5.   

    都好快啊~~~
    FontStyle.Bold | FontStyle.Italic | FontStyle.Underline,就是它咯
      

  6.   

    Font font = new Font("宋体", 9, 
        FontStyle.Bold | FontStyle.Italic | FontStyle.Underline);
      

  7.   

      
       Font font = new Font("宋体",12, FontStyle.Bold ,FontStyle.Italic ,FontStyle.Underline);  
        这样就行了..