TabControl.GetTabRect(Int32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 탭 컨트롤의 지정된 탭에 대한 경계 사각형을 반환합니다.
public:
System::Drawing::Rectangle GetTabRect(int index);
public System.Drawing.Rectangle GetTabRect (int index);
member this.GetTabRect : int -> System.Drawing.Rectangle
Public Function GetTabRect (index As Integer) As Rectangle
매개 변수
- index
- Int32
원하는 탭의 인덱스(0부터 시작하는 인덱스)입니다.
반환
지정된 탭의 범위를 나타내는 Rectangle.
예외
예제
다음 코드 예제에서는 하나의 TabPage사용하여 TabControl 만듭니다. 이 예제에서는 GetTabRect 메서드를 사용하여 tabPage1
탭 영역을 나타내는 Rectangle
가져옵니다.
myTabRect
Rectangle
DrawItem 이벤트에 의해 그려집니다.
이 예제에서는 System.Drawing 및 System.Windows.Forms 네임스페이스를 사용합니다.
using namespace System::Drawing;
using namespace System::Windows::Forms;
public ref class Form1: public Form
{
private:
TabControl^ tabControl1;
Rectangle myTabRect;
public:
Form1()
{
tabControl1 = gcnew TabControl;
TabPage^ tabPage1 = gcnew TabPage;
tabControl1->Controls->Add( tabPage1 );
tabControl1->DrawMode = TabDrawMode::OwnerDrawFixed;
tabControl1->Location = Point(25,25);
tabControl1->Size = System::Drawing::Size( 250, 250 );
tabPage1->TabIndex = 0;
// Gets the tabPage1 tab area defined by its TabIndex.
// Returns a Rectangle to myTabRect.
myTabRect = tabControl1->GetTabRect( 0 );
ClientSize = System::Drawing::Size( 300, 300 );
Controls->Add( tabControl1 );
tabControl1->DrawItem += gcnew DrawItemEventHandler( this, &Form1::OnDrawItem );
}
private:
void OnDrawItem( Object^ /*sender*/, DrawItemEventArgs^ e )
{
Graphics^ g = e->Graphics;
Pen^ p = gcnew Pen( Color::Blue );
g->DrawRectangle( p, myTabRect );
}
};
int main()
{
Application::Run( gcnew Form1 );
}
using System.Drawing;
using System.Windows.Forms;
public class Form1 : Form
{
private TabControl tabControl1;
private Rectangle myTabRect;
public Form1()
{
tabControl1 = new TabControl();
TabPage tabPage1 = new TabPage();
tabControl1.Controls.Add(tabPage1);
tabControl1.DrawMode = TabDrawMode.OwnerDrawFixed;
tabControl1.Location = new Point(25, 25);
tabControl1.Size = new Size(250, 250);
tabPage1.TabIndex = 0;
// Gets the tabPage1 tab area defined by its TabIndex.
// Returns a Rectangle to myTabRect.
myTabRect = tabControl1.GetTabRect(0);
ClientSize = new Size(300, 300);
Controls.Add(tabControl1);
tabControl1.DrawItem += new DrawItemEventHandler(OnDrawItem);
}
private void OnDrawItem(object sender, DrawItemEventArgs e)
{
Graphics g = e.Graphics;
Pen p = new Pen(Color.Blue);
g.DrawRectangle(p, myTabRect);
}
static void Main()
{
Application.Run(new Form1());
}
}
Imports System.Drawing
Imports System.Windows.Forms
Public Class Form1
Inherits Form
Private tabControl1 As TabControl
Private myTabRect As Rectangle
Public Sub New()
tabControl1 = New TabControl()
Dim tabPage1 As New TabPage()
tabControl1.Controls.Add(tabPage1)
tabControl1.DrawMode = TabDrawMode.OwnerDrawFixed
tabControl1.Location = New Point(25, 25)
tabControl1.Size = New Size(250, 250)
tabPage1.TabIndex = 0
' Gets the tabPage1 tab area defined by its TabIndex.
' Returns a Rectangle to myTabRect.
myTabRect = tabControl1.GetTabRect(0)
ClientSize = New Size(300, 300)
Controls.Add(tabControl1)
AddHandler tabControl1.DrawItem, AddressOf OnDrawItem
End Sub
Private Sub OnDrawItem(ByVal sender As Object, ByVal e As DrawItemEventArgs)
Dim g As Graphics = e.Graphics
Dim p As New Pen(Color.Blue)
g.DrawRectangle(p, myTabRect)
End Sub
Shared Sub Main()
Application.Run(New Form1())
End Sub
End Class
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET