Csharp/C Sharp/2D Graphics/Coordiate

Материал из .Net Framework эксперт
Перейти к: навигация, поиск

Coordiate Translate Transform

<source lang="csharp">

 using System;
 using System.Drawing;
 using System.Drawing.Drawing2D;
 using System.Collections;
 using System.ruponentModel;
 using System.Windows.Forms;
 using System.Data;
 public class Form1 : System.Windows.Forms.Form
 {
   public Form1()
   {
     InitializeComponent();
     SetStyle(ControlStyles.ResizeRedraw, true);
   }
   private void InitializeComponent()
   {
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(400, 400);
     this.Text = "";
     this.Paint += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);
   }
   static void Main() 
   {
     Application.Run(new Form1());
   }
   private void Form1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
   {
     Graphics g = e.Graphics;
     g.SmoothingMode = SmoothingMode.AntiAlias;
     g.PageUnit = GraphicsUnit.Inch;
       Point renderingOrgPt = new Point(0,0);
     renderingOrgPt.X = 1;
     renderingOrgPt.Y = 1;
     g.TranslateTransform(renderingOrgPt.X,renderingOrgPt.Y);
     g.DrawRectangle(new Pen(Color.Red, 1), 0, 0, 100, 100);
     g.Dispose();
   }
 }
          
      </source>


TranslateTransform:

<source lang="csharp">

 using System;
 using System.Drawing;
 using System.Drawing.Drawing2D;
 using System.Collections;
 using System.ruponentModel;
 using System.Windows.Forms;
 using System.Data;
 public class Form1 : System.Windows.Forms.Form
 {
   public Form1()
   {
     InitializeComponent();
     SetStyle(ControlStyles.ResizeRedraw, true);
   }
   private void InitializeComponent()
   {
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(400, 400);
     this.Text = "";
     this.Paint += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);
   }
   static void Main() 
   {
     Application.Run(new Form1());
   }
   private void Form1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
   {
     Graphics g = e.Graphics;
     g.SmoothingMode = SmoothingMode.AntiAlias;
 
     g.PageUnit = GraphicsUnit.Pixel;
       Point renderingOrgPt = new Point(0,0);
     renderingOrgPt.X = 100;
     renderingOrgPt.Y = 100;
     g.TranslateTransform(renderingOrgPt.X,
       renderingOrgPt.Y);
     g.DrawRectangle(new Pen(Color.Red, 1), 0, 0, 100, 100);
     
     g.Dispose();
   }
 }


      </source>