中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C# Graphics文本繪制怎么實現

小億
169
2023-10-22 14:23:17
欄目: 編程語言

在C#中繪制文本可以使用System.Drawing命名空間中的Graphics類。下面是一個簡單的示例代碼,演示如何在窗體上繪制文本:

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

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

    private void Form1_Paint(object sender, PaintEventArgs e)
    {
        Graphics g = e.Graphics;

        // 設置文本的字體和顏色
        Font font = new Font("Arial", 12);
        Brush brush = Brushes.Black;

        // 繪制文本
        string text = "Hello, World!";
        Point position = new Point(50, 50);
        g.DrawString(text, font, brush, position);
    }

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

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

在上述示例中,我們在窗體的Paint事件中創建一個Graphics對象,并使用DrawString方法繪制文本。可以設置字體、顏色和位置來繪制不同樣式的文本。

運行該代碼,你將會在窗體上看到繪制的文本。

0
德昌县| 灵武市| 盘山县| 普定县| 麻栗坡县| 岚皋县| 连州市| 重庆市| 如东县| 榆林市| 罗城| 扶沟县| 灵台县| 孝昌县| 万全县| 乐安县| 张家港市| 垣曲县| 霍州市| 盈江县| 积石山| 文化| 政和县| 庆云县| 菏泽市| 靖西县| 县级市| 莲花县| 聊城市| 天峨县| 潮州市| 平陆县| 滦平县| 吴堡县| 石台县| 龙川县| 阿坝县| 平陆县| 平武县| 乌苏市| 乌拉特中旗|