Answers for "property.resources find"

0

property.resources find

string resourceName = "MyImageNameHere";
Bitmap bmp = (Bitmap)Properties.Resources.ResourceManager.GetObject(resourceName);
pictureBox1.Image = bmp;
Posted by: Guest on October-13-2020

Browse Popular Code Answers by Language