溫馨提示×

c#中messagebox如何設(shè)置字體大小

c#
小億
966
2024-03-19 18:21:36
欄目: 編程語言

在C#中,可以使用以下方法來設(shè)置MessageBox的字體大?。?/p>

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

class CustomMessageBox : Form
{
    public static DialogResult Show(string text, string caption, int fontSize)
    {
        Form form = new Form();
        Label label = new Label();
        Button button = new Button();

        form.Text = caption;
        label.Text = text;
        label.AutoSize = true;
        label.Font = new Font("Arial", fontSize);
        button.Text = "OK";
        button.Click += (sender, e) => form.Close();

        form.Controls.Add(label);
        form.Controls.Add(button);
        form.AutoSize = true;

        DialogResult result = form.ShowDialog();
        form.Dispose();
        
        return result;
    }
}

class Program
{
    static void Main()
    {
        CustomMessageBox.Show("Hello, World!", "Custom MessageBox", 16);
    }
}

在上面的例子中,我們創(chuàng)建了一個自定義的MessageBox類CustomMessageBox,其中包含一個靜態(tài)方法Show來顯示一個自定義的MessageBox。在Show方法中,我們創(chuàng)建了一個新的Form,并向其中添加一個Label和一個Button,然后設(shè)置Label的字體大小為指定的大小。最后,調(diào)用form.ShowDialog()來顯示自定義的MessageBox。

0