I’ve set the backgroundImage property, and still the image covers all the UI, what am I doing wrong?
Thank you.
I’ve set the backgroundImage property, and still the image covers all the UI, what
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’re not providing enough information, but possible scenarios are:
PictureBoxis set to cover the entire formPictureBox‘sBackgroundImageproperty but the one of the form itselfPictureBoxto stretch the image (goes together with 1.)Why are you setting
BackgroundImageat all? Usually you put aPictureBoxon the form, assign the image and make sure that it has the appropriate size (or stretches, which I assume your’s is doing). Usually you don’t need theBackgroundImageproperty to display an image in thePictureBox.