PenInputPanel.AttachedEditControl 屬性
已取代。取得或設定其中附加 PenInputPanel 物件的控制項。PenInputPanel 已被 Microsoft.Ink.TextInput 取代。
命名空間: Microsoft.Ink
組件: Microsoft.Ink (在 Microsoft.Ink.dll 中)
語法
'宣告
Public Property AttachedEditControl As Control
'用途
Dim instance As PenInputPanel
Dim value As Control
value = instance.AttachedEditControl
instance.AttachedEditControl = value
public Control AttachedEditControl { get; set; }
public:
property Control^ AttachedEditControl {
Control^ get ();
void set (Control^ value);
}
/** @property */
public Control get_AttachedEditControl()
/** @property */
public void set_AttachedEditControl(Control value)
public function get AttachedEditControl () : Control
public function set AttachedEditControl (value : Control)
屬性值
型別:System.Windows.Forms.Control
其中附加 PenInputPanel 物件的控制項。
備註
AttachedEditControl 和 AttachedEditWindow 屬性為獨立屬性。因此設定其中一個屬性不一定會更新另一個。請使用您原本用來附加 PenInputPanel 物件至控制項或視窗的屬性。
範例
這個 C# 範例會建立 PenInputPanel 物件 (thePenInputPanel),並且透過設定 AttachedEditControl 屬性將它附加至 InkEdit 控制項 (theInkEdit)。
[C#]
// Declare and create a PenInputPanel
PenInputPanel thePenInputPanel = new PenInputPanel();
// Attach the PenInputPanel to an InkEdit control
thePenInputPanel.AttachedEditControl = theInkEdit;
這個 Microsoft® Visual Basic® .NET 範例會建立 PenInputPanel 物件 (thePenInputPanel),並且透過設定 AttachedEditControl 屬性將它附加至 InkEdit 控制項 (theInkEdit)。
[Visual Basic]
' Declare and create a PenInputPanel
Dim thePenInputPanel As New PenInputPanel()
' Attach the PenInputPanel to an InkEdit control
thePenInputPanel.AttachedEditControl = theInkEdit
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0
請參閱
參考
PenInputPanel.AttachedEditControl