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
您想要之索引標籤的以零起始的索引。
傳回
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