當前位置: 首頁>>代碼示例>>C#>>正文


C# Point.X屬性代碼示例

本文整理匯總了C#中System.Drawing.Point.X屬性的典型用法代碼示例。如果您正苦於以下問題:C# Point.X屬性的具體用法?C# Point.X怎麽用?C# Point.X使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在System.Drawing.Point的用法示例。


在下文中一共展示了Point.X屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Button1_Click

private void Button1_Click(System.Object sender, System.EventArgs e)
{

    // Construct a new Point with integers.
    Point Point1 = new Point(100, 100);

    // Create a Graphics object.
    Graphics formGraphics = this.CreateGraphics();

    // Construct another Point, this time using a Size.
    Point Point2 = new Point(new Size(100, 100));

    // Call the equality operator to see if the points are equal,  
    // and if so print out their x and y values.
    if (Point1 == Point2)
    {
        formGraphics.DrawString(String.Format("Point1.X: " +
            "{0},Point2.X: {1}, Point1.Y: {2}, Point2.Y {3}",
            new object[]{Point1.X, Point2.X, Point1.Y, Point2.Y}),
            this.Font, Brushes.Black, new PointF(10, 70));
    }
}
開發者ID:.NET開發者,項目名稱:System.Drawing,代碼行數:22,代碼來源:Point.X

示例2: Form1

//引入命名空間
using System;
  using System.Drawing;
  using System.Drawing.Drawing2D;
  using System.Collections;
  using System.ComponentModel;
  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();
    }
  }
開發者ID:C#程序員,項目名稱:System.Drawing,代碼行數:45,代碼來源:Point.X


注:本文中的System.Drawing.Point.X屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。