欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#实现将像素转换为页面单位的方法

程序员文章站 2022-07-22 19:46:36
本文实例讲述了c#实现将像素转换为页面单位的方法。分享给大家供大家参考。具体实现方法如下: using system; using system.collect...

本文实例讲述了c#实现将像素转换为页面单位的方法。分享给大家供大家参考。具体实现方法如下:

using system;
using system.collections.generic;
using system.componentmodel;
using system.data;
using system.drawing;
using system.text;
using system.windows.forms;
using system.drawing.drawing2d;
namespace advanced_drawing
{
  public partial class form3 : form
  {
    public form3()
    {
      initializecomponent();
    }
    private void button1_click(object sender, eventargs e)
    {
      graphics g = this.creategraphics();
      g.pageunit = graphicsunit.inch;
      g.pagescale = 1;
      pointf[] bottomright = new pointf[] { new pointf(this.clientsize.width, this.clientsize.height) };
      g.transformpoints(coordinatespace.page, coordinatespace.device, bottomright);
      rectangle rect = new rectangle(0, 0, 10, 10);
      pen pen=new pen(color.red);
      g.drawrectangle(pen, rect);
    }
  }
}

希望本文所述对大家的c#程序设计有所帮助。