没有进行过windows开发~
有点晕俄

解决方案 »

  1.   

    参看
    http://www.syncfusion.com/faq/windowsforms/Search/491.aspx
      

  2.   

    通过重绘Graphic,来打印。在www.codeproject.com上找找,有不少。
      

  3.   

    1.     Add a print function to your application. 
      
    To do this, you should add a PrintDocument component to your application. 
     
    Please drag a PrintDocument from the tool box to your form. After that, you 
     
    should create a PrintDialog and add the code to print the document. 
      
              private void buttonPrint_Click(object sender, System.EventArgs e) 
     
              { 
     
                   PrintDialog printDialog1 = new PrintDialog(); 
     
                   printDialog1.Document = printDocument1; 
     
                   DialogResult result = printDialog1.ShowDialog(); 
     
                   if (result == DialogResult.OK) 
     
                   { 
     
                        printDocument1.Print(); 
     
                   } 
     
              }  
    按照上面的做了,不成啊??为啥阿