要自定義C#中的確認對話框樣式,可以使用Windows窗體(WinForms)或WPF(Windows Presentation Foundation)創建一個自定義對話框
CustomMessageBox
。CustomMessageBox
設計器中,根據需要調整控件和布局。例如,添加一個標簽、兩個按鈕(“是”和“否”)以及其他所需元素。以下是一個簡單的示例:
using System;
using System.Windows.Forms;
namespace CustomMessageBoxExample
{
public partial class CustomMessageBox : Form
{
public CustomMessageBox(string message, string title)
{
InitializeComponent();
this.Text = title;
this.labelMessage.Text = message;
}
private void btnYes_Click(object sender, EventArgs e)
{
this.DialogResult = DialogResult.Yes;
this.Close();
}
private void btnNo_Click(object sender, EventArgs e)
{
this.DialogResult = DialogResult.No;
this.Close();
}
}
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
}
private void btnShowCustomMessageBox_Click(object sender, EventArgs e)
{
using (var customMessageBox = new CustomMessageBox("Are you sure?", "Confirmation"))
{
var result = customMessageBox.ShowDialog();
if (result == DialogResult.Yes)
{
// User clicked "Yes"
}
else if (result == DialogResult.No)
{
// User clicked "No"
}
}
}
}
}
在這個示例中,我們創建了一個名為CustomMessageBox
的自定義對話框,它接受一條消息和一個標題作為參數。然后,在主窗體上,我們創建并顯示CustomMessageBox
的實例,并根據用戶的選擇執行相應操作。
請注意,這只是一個簡單的示例,您可以根據需要進一步自定義此對話框。