How do i get an Image for the various MessageBoxImage(s) or MessageBoxIcon(s)

.net, messagebox, winforms, wpf

Solution

SystemIcons is what I was looking for:

SystemIcons.Warning.ToBitmap();

Problem

How do i get an `System.Drawing.Image` for the various `System.Windows.MessageBoxImage`(s) and/or `System.Windows.Forms.MessageBoxIcon`(s)

Original source

Related problems