I would like to know is there any way by which we can change the Image color at runtime. for e.g lets say I am having a JPG bind to an Image control of ASP.Net. Next I am ha
I am also facing trouble to under this question. after that based on the some information. I wrote the code manually.Now it works well. If you want to check.you can use it.
code for change the background image during runtime in C#.net
you can use simply this code. That is, ==>
string str;
OpenFileDialog od = new OpenFileDialog();
if (od.ShowDialog() == DialogResult.OK)
{
str = od.FileName;
this.BackgroundImage=Image.FromFile(str);
}