Click here to Skip to main content
15,888,521 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hey all i need to set background Image in windows mobile application 6
i dnt found it in properities just background color prop. is exist
i dnt need to put picture box or anything just background color
any idea ??
thx for read
Posted

1 solution

I would go ahead and add a new picture box. All is separate that way


PictureBox pb = new PictureBox();<br />
            pb.Size = this.Size;<br />
            pb.Image = ((System.Drawing.Image)(resources.GetObject("Your.Image")));
 
Share this answer
 
Comments
Ashraf ELHakim 27-Jun-10 7:57am    
thx for ur replay but i dnt need picturebox because i make 1000 opetaion in my application at each of this operation This.controls.clear();
and this clear all controls and picturebox but i dnt need picturebox to clear with any function

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900