Label.Image プロパティ
Label に表示されるイメージを取得または設定します。
Public Property Image As Image
[C#]
public Image Image {get; set;}
[C++]
public: __property Image* get_Image();public: __property void set_Image(Image*);
[JScript]
public function get Image() : Image;public function set Image(Image);
プロパティ値
Label に表示される Image 。既定値は null 参照 (Visual Basic では Nothing) です。
解説
Image プロパティは、 ImageList プロパティおよび ImageIndex プロパティと同時には使用できません。イメージを表示するために Image プロパティを使用すると、 ImageList プロパティと ImageIndex プロパティは自動的にそれぞれの既定値に設定されます。
使用例
[Visual Basic, C#, C++] Label を作成して、 Label の後ろに Image を表示する方法を次の例に示します。最初に、この例では Label を作成し、ディスク ファイルに基づいて Image を作成します。次に、その Image を含むように Size プロパティを初期化します。最後に、 Image プロパティを Image に初期化します。
Private Sub CreateMyLabel()
' Create a new label and bitmap.
Dim Label1 As New Label()
Dim Image1 As Image
Image1 = Image.FromFile("c:\\MyImage.bmp")
' Set the size of the label to accommodate the bitmap size.
Label1.Size = Image1.Size
' Initialize the label control's Image property.
Label1.Image = Image1
' ...Code to add the control to the form...
End Sub
[C#]
public void CreateMyLabel()
{
// Create a new label and create a bitmap.
Label label1 = new Label();
Image image1 = Image.FromFile("c:\\MyImage.bmp");
// Set the size of the label to accommodate the bitmap size.
label1.Size = new Size(image1.Width, image1.Height);
// Initialize the label control's Image property.
label1.Image = image1;
// ...Code to add the control to the form...
}
[C++]
public:
void CreateMyLabel()
{
// Create a new label and create a bitmap.
Label* label1 = new Label();
Image* image1 = Image::FromFile(S"c:\\MyImage.bmp");
// Set the size of the label to accommodate the bitmap size.
label1->Size = System::Drawing::Size(image1->Width, image1->Height);
// Initialize the label control's Image property.
label1->Image = image1;
// ...Code to add the control to the form...
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
Label クラス | Label メンバ | System.Windows.Forms 名前空間 | Image | ImageAlign | ImageList | ImageIndex