91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c# drawstring如何設置字體樣式

c#
小樊
81
2024-11-23 00:45:03
欄目: 編程語言

在C#中,使用Graphics.DrawString()方法繪制文本時,可以通過Font類來設置字體樣式。以下是一個示例,展示了如何設置字體樣式、大小和顏色:

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

public class MainForm : Form
{
    protected override void OnPaint(PaintEventArgs e)
    {
        base.OnPaint(e);

        // 創建一個Font對象,設置字體樣式、大小和顏色
        Font font = new Font("Arial", 14, FontStyle.Bold | FontStyle.Underline);

        // 設置文本要繪制的位置
        Point position = new Point(50, 50);

        // 繪制文本
        e.Graphics.DrawString("Hello, World!", font, Brushes.Blue, position);
    }

    [STAThread]
    static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Application.Run(new MainForm());
    }
}

在這個示例中,我們創建了一個Font對象,并設置了字體樣式(粗體和下劃線)、字體大小(14)和字體顏色(藍色)。然后,我們使用e.Graphics.DrawString()方法在指定位置繪制文本。

0
开平市| 灵宝市| 靖远县| 寻乌县| 绵阳市| 沂南县| 遂平县| 洪湖市| 周宁县| 建平县| 民和| 华坪县| 龙海市| 滨海县| 镇雄县| 丹寨县| 锡林浩特市| 清远市| 三亚市| 临漳县| 都昌县| 特克斯县| 双鸭山市| 邵阳县| 徐水县| 绥棱县| 阿拉善左旗| 高密市| 偃师市| 辉县市| 阿荣旗| 延庆县| 陈巴尔虎旗| 依安县| 余干县| 苏尼特右旗| 黄山市| 河曲县| 合水县| 舞钢市| 个旧市|