方法: Windows フォーム コントロールによって表示されるイメージを設定する
複数の Windows フォーム コントロールで画像を表示できます。 これらの画像には、コントロールの目的を明確にするアイコン ([保存] コマンドを示すボタンのディスケット アイコンなど) を指定できます。 または、アイコンを背景画像にして、目的の外観と動作をコントロールに提供することもできます。
プログラムに基づく
コントロールの Image
または BackgroundImage
プロパティを Image型のオブジェクトに設定します。 一般に、FromFile メソッドを使用してファイルからイメージを読み込みます。
次のコード例では、イメージの場所に設定されたパスは、[マイ ピクチャ] フォルダー
' 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"));
デザイナー
Visual Studio の
プロパティ ウィンドウで、コントロールのImage またはBackgroundImage プロパティを選択し、省略記号 (Visual Studioの [省略記号] ボタンを) を選択して、[リソース の選択] ダイアログ ボックス 表示します。 表示する画像を選択します。
関連項目
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET Desktop feedback