要自定义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
的实例,并根据用户的选择执行相应操作。
请注意,这只是一个简单的示例,您可以根据需要进一步自定义此对话框。