共用方式為


HOW TO:設定由 Windows Form 控制項所顯示的影像

有幾個 Windows Form 控制項可顯示影像。 這些影像可以是表明控制項用途的圖示,例如按鈕上的磁碟片圖示代表儲存命令。 或者,圖示可以是背景影像,用來提供想要的控制項外觀和行為。

若要設定控制項顯示的影像

  • 將控制項的 Image 或 BackgroundImage 屬性設為 Image 型別的物件。 一般而言,使用 FromFile 方法,會讓您從檔案載入影像。

    在下列程式碼範例中,圖示的位置路徑設定為 [我的圖片] 資料夾。 大部分執行 Windows 作業系統的電腦都有這個目錄。 這也可讓使用者只需最基本的系統存取層級,即可安全地執行應用程式。 下列程式碼範例假設已將 PictureBox 控制項加入表單。

    ' Replace the image named below
    ' with an icon of your own choosing.
    PictureBox1.Image = Image.FromFile _
       (System.Environment.GetFolderPath _
       (System.Environment.SpecialFolder.MyPictures) _
       & "\Image.gif")
    
    // Replace the image named below
    // with an icon of your own choosing.
    // Note the escape character used (@) when specifying the path.
    pictureBox1.Image = Image.FromFile
       (System.Environment.GetFolderPath
       (System.Environment.SpecialFolder.MyPictures)
       + @"\Image.gif");
    
    // Replace the image named below
    // with an icon of your own choosing.
    pictureBox1->Image = Image::FromFile(String::Concat
       (System::Environment::GetFolderPath
       (System::Environment::SpecialFolder::MyPictures),
       "\\Image.gif"));
    

請參閱

參考

FromFile

Image

BackgroundImage