当前位置:  开发笔记 > 编程语言 > 正文

Mono是否支持System.Drawing和System.Drawing.Printing?

如何解决《Mono是否支持System.Drawing和System.Drawing.Printing?》经验,为你挑选了2个好方法。

我正在尝试使用Mono加载位图并在Linux上打印但我得到一个例外.Mono是否支持在Linux上打印?代码/例外如下:

编辑:不再获得例外,但我仍然很好奇有什么样的支持.留下后代或其他东西的代码.

private void btnPrintTest_Click(object sender, EventArgs e)
{
    _printDocTest.DefaultPageSettings.Landscape = true;
    _printDocTest.DefaultPageSettings.Margins = new Margins(50,50,50,50);
    _printDocTest.Print();
}

void _printDocTest_PrintPage(object sender, PrintPageEventArgs e)
{
  var bmp = new Bitmap("test.bmp");

  // Determine center of graph
  var xCenter = e.MarginBounds.X + (e.MarginBounds.Width - bmp.Width) / 2;
  var yCenter = e.MarginBounds.Y + (e.MarginBounds.Height - bmp.Height) / 2;

  e.Graphics.DrawImage(bmp, xCenter, yCenter);

  e.HasMorePages = false;
}

jfs.. 7

从Mono文档中,我认为是:

Managed.Windows.Forms(又名System.Windows.Forms):一个完整​​的跨平台,基于System.Drawing的Winforms实现.

如果您首先运行Mono Migration Analyzer,它也很有用.



1> jfs..:

从Mono文档中,我认为是:

Managed.Windows.Forms(又名System.Windows.Forms):一个完整​​的跨平台,基于System.Drawing的Winforms实现.

如果您首先运行Mono Migration Analyzer,它也很有用.



2> Espo..:

根据

System.Drawing现在已经完成,除了作为Windows.Forms的底层渲染引擎之外,它还经过了严格依赖它的第三方控件的测试.

推荐阅读
贾志军
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有