同样的图形,屏幕拷贝,用Word打印却正常;请高手指点!

解决方案 »

  1.   

    我使用PrintDocument的继承类实现图形打印,在该类中实现打印设置: private void InitializeComponent()
    {
    this.PageSettor = new System.Windows.Forms.PageSetupDialog();
    // 
    // PageSettor
    // 
    this.PageSettor.Document = this;
    int ml = SysConfig.Instance.PageMargin_Left;
    int mr = SysConfig.Instance.PageMargin_Right;
    int mt = SysConfig.Instance.PageMargin_Top;
    int mb = SysConfig.Instance.PageMargin_Bottom; this.PageSettor.PageSettings.Margins = new Margins(ml, mr, mt, mb);
    this.PageSettor.PageSettings.Landscape = SysConfig.Instance.PageIsLandScape;
    }这会影响打印进程吗?
      

  2.   

    http://www.ftponline.com/china/print.aspx?TotalPage=5&ID=125
    http://cht.gotdotnet.com/quickstart/winforms/doc/WinFormsPrinting.aspx
    http://www.chinaitpower.com/A/2004-02-27/72832.html