TabPage.ImageIndex 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 탭에 표시되는 이미지의 인덱스를 가져오거나 설정합니다.
public:
property int ImageIndex { int get(); void set(int value); };
[System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.ImageIndexConverter))]
public int ImageIndex { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.ImageIndexConverter))>]
member this.ImageIndex : int with get, set
Public Property ImageIndex As Integer
속성 값
탭에 표시되는 이미지 ImageList 의 인덱스(0부터 시작하는 인덱스)입니다. 기본값은 -1로, 이미지가 없음을 의미합니다.
- 특성
예외
value
이 -1보다 작습니다.
예제
다음 코드 예제에서는 하나를 TabPage사용하여 TabControl 만듭니다. 다음은 속성을 ImageIndex 사용하여 탭tabPage1
에 표시되는 이미지를 myImages
지정하는 예제입니다.
using namespace System::Drawing;
using namespace System::ComponentModel;
using namespace System::Windows::Forms;
using namespace System::Resources;
public ref class Form1: public Form
{
public:
Form1()
{
IContainer^ components = gcnew System::ComponentModel::Container;
ResourceManager^ resources = gcnew ResourceManager( Form1::typeid );
TabControl^ tabControl1 = gcnew TabControl;
TabPage^ tabPage1 = gcnew TabPage;
ImageList^ myImages = gcnew ImageList( components );
tabControl1->Controls->Add( tabPage1 );
// Displays images from myImages on the tabs of tabControl1.
tabControl1->ImageList = myImages;
// Specifies which image to display (on the tab of tabPage1) by its index.
tabPage1->ImageIndex = 0;
tabPage1->Text = "tabPage1";
myImages->ImageStream = (dynamic_cast<ImageListStreamer^>(resources->GetObject( "myImages.ImageStream" )));
myImages->ColorDepth = ColorDepth::Depth8Bit;
myImages->ImageSize = System::Drawing::Size( 16, 16 );
myImages->TransparentColor = Color::Transparent;
this->Controls->Add( tabControl1 );
}
};
int main()
{
Application::Run( gcnew Form1 );
}
using System.Drawing;
using System.ComponentModel;
using System.Windows.Forms;
using System.Resources;
public class Form1 : Form
{
public Form1()
{
IContainer components = new Container();
ResourceManager resources = new ResourceManager(typeof(Form1));
TabControl tabControl1 = new TabControl();
TabPage tabPage1 = new TabPage();
ImageList myImages = new ImageList(components);
tabControl1.Controls.Add(tabPage1);
// Displays images from myImages on the tabs of tabControl1.
tabControl1.ImageList = myImages;
// Specifies which image to display (on the tab of tabPage1) by its index.
tabPage1.ImageIndex = 0;
tabPage1.Text = "tabPage1";
myImages.ImageStream = ((ImageListStreamer)(resources.GetObject("myImages.ImageStream")));
myImages.ColorDepth = ColorDepth.Depth8Bit;
myImages.ImageSize = new Size(16, 16);
myImages.TransparentColor = Color.Transparent;
this.Controls.Add(tabControl1);
}
static void Main()
{
Application.Run(new Form1());
}
}
Imports System.Drawing
Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Resources
Public Class Form1
Inherits Form
Public Sub New()
Dim components = New Container()
Dim resources As New ResourceManager(GetType(Form1))
Dim tabControl1 As New TabControl()
Dim tabPage1 As New TabPage()
Dim myImages As New ImageList(components)
tabControl1.Controls.Add(tabPage1)
' Displays images from myImages on the tabs of tabControl1.
tabControl1.ImageList = myImages
' Specifies which image to display (on the tab of tabPage1) by its index.
tabPage1.ImageIndex = 0
tabPage1.Text = "tabPage1"
myImages.ImageStream = CType(resources.GetObject("myImages.ImageStream"), ImageListStreamer)
myImages.ColorDepth = ColorDepth.Depth8Bit
myImages.ImageSize = New Size(16, 16)
myImages.TransparentColor = Color.Transparent
Me.Controls.Add(tabControl1)
End Sub
Shared Sub Main()
Application.Run(New Form1())
End Sub
End Class
설명
ImageIndex 에 연결된 ImageList 이미지를 가리킵니다TabControl.
ImageKey 는 ImageIndex 상호 배타적입니다. 즉, 한 값이 설정되면 다른 값은 잘못된 값으로 설정되고 무시됩니다. 속성을 설정 ImageKey 하면 속성이 ImageIndex 자동으로 -1로 설정됩니다. 또는 속성을 ImageKey 설정하는 ImageIndex 경우 자동으로 빈 문자열("")로 설정됩니다.