编写一个winforms 应用程序。我创建了一个是/否消息框,当用户尝试删除文件时显示给用户,但我想将回收站图像添加到消息中。您如何获得访问权限,用于消息框系统图标/图像之类的东西?
MessageBox.Show("Please confirm that you would like to delete the folder named:" + fldnme,
"Confirm Folder Delete",
MessageBoxButtons.YesNo,
MessageBoxIcon.Exclamation);
显然我会用替换messageboxicon?
谢谢