Writing a winforms application. I have created a yes/no message box, displayed to the user when they are trying to delete a file but I would like to add the recycle bin image to the message. How do you get access, for use with things like message boxes systems icons/images?
MessageBox.Show("Please confirm that you would like to delete the folder named:" + fldnme,
"Confirm Folder Delete",
MessageBoxButtons.YesNo,
MessageBoxIcon.Exclamation);
Obviously I would be replacing the messageboxicon with?
Thanks