亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

C# Graphics.DrawLine()函數實例講解

c#
小億
132
2023-12-19 02:38:09
欄目: 編程語言

Graphics.DrawLine()函數用于在指定的兩個點之間繪制一條直線。

下面是一個使用Graphics.DrawLine()函數繪制直線的示例:

using System;
using System.Drawing;
using System.Windows.Forms;

public class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void Form1_Paint(object sender, PaintEventArgs e)
    {
        // 創建畫筆和繪圖表面
        Pen pen = new Pen(Color.Black);
        Graphics g = e.Graphics;

        // 定義起點和終點坐標
        int x1 = 50, y1 = 50;
        int x2 = 200, y2 = 200;

        // 使用DrawLine()函數繪制直線
        g.DrawLine(pen, x1, y1, x2, y2);

        // 釋放資源
        pen.Dispose();
        g.Dispose();
    }

    private void InitializeComponent()
    {
        this.SuspendLayout();
        // 
        // Form1
        // 
        this.ClientSize = new System.Drawing.Size(300, 300);
        this.Name = "Form1";
        this.Paint += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);
        this.ResumeLayout(false);
    }

    [STAThread]
    static void Main()
    {
        Application.Run(new Form1());
    }
}

在這個示例中,我們創建了一個繼承自Form類的窗體類Form1,并重載了Form1的Paint事件處理函數Form1_Paint。在Form1_Paint事件處理函數中,我們創建了一個畫筆對象和一個繪圖表面對象。然后,我們定義了起點坐標(x1, y1)和終點坐標(x2, y2)。最后,我們使用Graphics.DrawLine()函數繪制一條直線。

在Main函數中,我們創建了Form1對象并將其傳遞給Application.Run()函數以運行應用程序。

運行這個示例,將會在窗體上繪制一條從坐標(50, 50)到坐標(200, 200)的直線。

0
宁德市| 江口县| 泸定县| 莱西市| 高州市| 兴宁市| 梧州市| 武平县| 调兵山市| 逊克县| 宽甸| 东乡族自治县| 基隆市| 祥云县| 云和县| 房山区| 乐昌市| 高雄县| 兰考县| 通道| 南城县| 镇沅| 嫩江县| 嵊州市| 文山县| 平罗县| 梅河口市| 南阳市| 横峰县| 光泽县| 玉环县| 梁河县| 宁南县| 布拖县| 通州市| 图们市| 襄城县| 鸡西市| 黄龙县| 秭归县| 漾濞|