Developer, Former MVP, now at Microsoft - Best of 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
void button1_Click(System.Object sender, System.EventArgs e){ // use Error pictureBox1.Image = Bitmap.FromHicon(SystemIcons.Error.Handle); // use Warning this.Icon = SystemIcons.Warning; // use Information int h = button1.ClientSize.Height / 2; Icon ico = new Icon(SystemIcons.Information, h, h); Bitmap bitmap1 = Bitmap.FromHicon(ico.Handle); button1.Image = bitmap1; button1.ImageAlign = ContentAlignment.MiddleLeft; }