我使用了一个按钮单击事件来调用对话框,如下所示:
private void btnDialog_Click(object sender, EventArgs e)
{
DialogResult result = BetterDialog.ShowDialog("Special Dialog", "large heading", "small explanation", null, "Ok", ***null***);
if (result == DialogResult.OK)
{
// Action to perform ...
}
}
如何指定给定文件夹中的图标图像以显示在对话框中?