在C#中,MessageBox類主要用于顯示靜態的對話框,它不支持直接設置動態內容。但是,你可以通過創建自定義的對話框窗口來實現動態內容。
以下是一個簡單的示例,展示了如何創建一個包含動態內容的自定義MessageBox:
首先,創建一個新的Windows窗體(例如CustomMessageBox),并設計其布局和內容。你可以使用Label、TextBox、Button等控件來創建所需的界面。
在CustomMessageBox窗體的代碼中,為按鈕添加點擊事件處理程序,以便在用戶單擊按鈕時執行相應的操作。
在主程序中,創建CustomMessageBox的實例,并設置其內容和屬性。然后,使用ShowDialog()
方法顯示對話框。
以下是一個簡單的示例代碼:
using System;
using System.Windows.Forms;
namespace CustomMessageBoxExample
{
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
}
private void buttonShowMessage_Click(object sender, EventArgs e)
{
CustomMessageBox customMessageBox = new CustomMessageBox();
customMessageBox.Title = "動態內容消息框";
customMessageBox.Message = "這是一個包含動態內容的消息框。";
customMessageBox.ButtonText = "確定";
// 設置動態內容
customMessageBox.LabelText = "用戶名:";
customMessageBox.TextBoxUsername.Text = "JohnDoe";
customMessageBox.ShowDialog();
}
}
public class CustomMessageBox : Form
{
public string Title { get; set; }
public string Message { get; set; }
public string ButtonText { get; set; }
private Label labelText;
private TextBox textBoxUsername;
public CustomMessageBox()
{
InitializeComponent();
}
private void InitializeComponent()
{
this.labelText = new System.Windows.Forms.Label();
this.textBoxUsername = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// labelText
//
this.labelText.Location = new System.Drawing.Point(10, 10);
this.labelText.Size = new System.Drawing.Size(80, 13);
this.labelText.Text = "用戶名:";
//
// textBoxUsername
//
this.textBoxUsername.Location = new System.Drawing.Point(100, 8);
this.textBoxUsername.Size = new System.Drawing.Size(160, 20);
//
// CustomMessageBox
//
this.ClientSize = new System.Drawing.Size(284, 119);
this.Controls.Add(this.textBoxUsername);
this.Controls.Add(this.labelText);
this.Name = "CustomMessageBox";
this.Text = "自定義消息框";
this.ResumeLayout(false);
}
}
}
在這個示例中,我們創建了一個名為CustomMessageBox的自定義窗體,并在其中添加了Label和TextBox控件。然后,在主程序中,我們創建了CustomMessageBox的實例,并設置了其標題、消息、按鈕文本等屬性。最后,我們使用ShowDialog()
方法顯示對話框。