G
Guest
I have a form on which I want to display one of Icons from the SystemIcons class. I have done so using a PictureBox, something like...
PictureBox pictureBox = new PictureBox();
....
pictureBox.Image = SystemIcons.Question.ToBitmap();
This does display the Icon but it is a bit 'choppy' and simply does not look as nice as when the same icon is displayed using MessageBox.Show( ...., MessageBoxIcons.Question, ...)
Any ideas? Is there a better way to do this? Something besides the PictureBox class.
PictureBox pictureBox = new PictureBox();
....
pictureBox.Image = SystemIcons.Question.ToBitmap();
This does display the Icon but it is a bit 'choppy' and simply does not look as nice as when the same icon is displayed using MessageBox.Show( ...., MessageBoxIcons.Question, ...)
Any ideas? Is there a better way to do this? Something besides the PictureBox class.