共用方式為


了解如何設定由 Windows Forms 控制項顯示的影像

數個 Windows Forms 控制項可以顯示影像。 這些影像可以是釐清控制項用途的圖示,例如表示儲存命令之按鈕上的磁碟圖示。 或者,圖示可以是背景影像,以提供控制項您想要的外觀和行為。

程式設計

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

在下列程式碼範例中,為影像位置設定的路徑是 [我的圖片] 資料夾。 執行 Windows 作業系統的大部分電腦都包含此目錄。 也可讓具備最小系統存取層級的使用者安全地執行應用程式。 下列程式碼範例會要求您已經具備新增 PictureBox 控制項的表單。

' Replace the image named below with your own icon.
PictureBox1.Image = Image.FromFile _
   (System.Environment.GetFolderPath _
   (System.Environment.SpecialFolder.MyPictures) _
   & "\Image.gif")
// Replace the image named below with your own icon.
// 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 your own icon.
pictureBox1->Image = Image::FromFile(String::Concat
   (System::Environment::GetFolderPath
   (System::Environment::SpecialFolder::MyPictures),
   "\\Image.gif"));

設計工具

  1. 在 Visual Studio 的 [屬性] 視窗中,選取控制項的 ImageBackgroundImage 屬性,然後選取省略符號 (Ellipsis button in Visual StudioVisual Studio 中的省略符號按鈕) 以顯示 [選取資源] 對話方塊。

  2. 選取您想要顯示的影像。

另請參閱