See the System.Drawing.SystemIcons class to display system icons used by the MessageBox class, such as Question , Information and Warning .
e.Graphics.DrawImage(SystemIcons.Question.ToBitmap(), new Point(0, 0));
For sounds, see the System.Media.SystemSounds class for playing related sounds.
System.Media.SystemSounds.Asterisk.Play();
source share