共用方式為


InkPicture.TabStop 屬性

取得或設定值,指出使用者是否可以透過按下 TAB 鍵將焦點 (Focus) 給予這個控制項。

命名空間:  Microsoft.Ink
組件:  Microsoft.Ink (在 Microsoft.Ink.dll 中)

語法

'宣告
<BrowsableAttribute(True)> _
Public Property TabStop As Boolean
'用途
Dim instance As InkPicture
Dim value As Boolean

value = instance.TabStop

instance.TabStop = value
[BrowsableAttribute(true)]
public bool TabStop { get; set; }
[BrowsableAttribute(true)]
public:
property bool TabStop {
    bool get ();
    void set (bool value);
}
/** @property */
/** @attribute BrowsableAttribute(true) */
public boolean get_TabStop()
/** @property */
/** @attribute BrowsableAttribute(true) */
public  void set_TabStop(boolean value)
public function get TabStop () : boolean
public function set TabStop (value : boolean)

屬性值

型別:System.Boolean
如果使用者可以透過按下 TAB 鍵將焦點給予這個控制項,則為 true。預設值。
如果使用者無法透過按下 TAB 鍵將焦點給予這個控制項,則為 false。

備註

使用者按下 TAB 鍵時,輸入焦點會設定給定位順序的下一個控制項。定位順序中的控制項集合不包含 TabStop 屬性值為 false 的控制項。只要設定控制項的 TabIndex 屬性值,就可以管理定位順序。

範例

這個 C# 範例會建立兩個 TextBox 控制項 (theTextBox1 和 theTextBox2) 以及一個 InkPicture 控制項 (theInkPicture)。theInkPicture 上的 TabStop 屬性會設定為 false。當使用者按下 TAB 鍵時,焦點會從 theTextBox1 移至 theTextBox2,但略過 theInkPicture。

[C#]

using Microsoft.Ink;

//. . .

theTextBox1 = new TextBox();
theInkPicture = new InkPicture();
theTextBox2 = new TextBox();

//. . .

theInkPicture.TabStop = false;

這個 Microsoft® Visual Basic® .NET 範例會建立兩個 TextBox 控制項 (theTextBox1 和 theTextBox2) 以及一個 InkPicture 控制項 (theInkPicture)。theInkPicture 上的 TabStop 屬性會設定為 false。當使用者按下 TAB 鍵時,焦點會從 theTextBox1 移至 theTextBox2,但略過 theInkPicture。

[Visual Basic]

Imports Microsoft.Ink

//. . .

Dim theTextBox1 As New TextBox()
Dim theInkPicture As New InkPicture()
Dim theTextBox2 = As TextBox()

//. . .

theInkPicture.TabStop = false

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求

版本資訊

.NET Framework

支援版本:3.0

請參閱

參考

InkPicture 類別

InkPicture 成員

Microsoft.Ink 命名空間

TabStop

TabIndex