change background form to just image in visual studio express 2010

Discussion in 'C#' started by xbat, Oct 17, 2013.

  1. #1
    I am looking to change the background form in visual studio express 2010 to just a image. Anyone have any idea how to do this? I looked around but there wasn't to much I could find. Maybe I am searching for the wrong thing?

    What it looks like >>

    with.jpg
    What I want it to look like >>

    without.jpg
     
    Solved! View solution.
    xbat, Oct 17, 2013 IP
  2. #2
    Just click on the form, go to properties, locate the setting and set "FormBorderStyle" to "None"

    Or by code
    Double click the form, that will create an automated event "Form1_Load" and write there:

    
    this.FormBorderStyle = Windows.Forms.FormBorderStyle.None;
    
    Code (markup):
    Result:
    [​IMG]
     
    Last edited: Nov 1, 2013
    ZyreX, Nov 1, 2013 IP
  3. xbat

    xbat Well-Known Member

    Messages:
    326
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    105
    #3
    wow right in front of me.. Thank you.. another quick question. How would I make it dragable?
     
    xbat, Nov 5, 2013 IP
  4. ZyreX

    ZyreX Well-Known Member

    Messages:
    104
    Likes Received:
    13
    Best Answers:
    1
    Trophy Points:
    115
    #4
    Have a look at this: http://www.codeproject.com/Tips/502120/Drag-and-Resize-Borderless-Form
     
    ZyreX, Nov 7, 2013 IP
  5. xbat

    xbat Well-Known Member

    Messages:
    326
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    105
    #5
    thank you
     
    xbat, Nov 7, 2013 IP