background image not tile

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

when I add an image to my winform application as background it always seem
to tile itself...

is it possible for it not to tile ?

thanks
Tom
 
Tom said:
when I add an image to my winform application as background it always seem
to tile itself...

is it possible for it not to tile ?

I don't see any setting for that in the designer, however, the
BackgroundIamge property is of type Image, so you could simply load your
image file manually in code and resize it so it matches the form using the
various methods Image and Graphics offer.
 
Back
Top