TextInputPanel.AttachedEditWindow 属性

获取或设置 TextInputPanel 对象附加到的窗口句柄。

命名空间:  Microsoft.Ink.TextInput
程序集:  Microsoft.Ink(在 Microsoft.Ink.dll 中)

语法

声明
Public Property AttachedEditWindow As IntPtr
用法
Dim instance As TextInputPanel
Dim value As IntPtr

value = instance.AttachedEditWindow

instance.AttachedEditWindow = value
public IntPtr AttachedEditWindow { get; set; }
public:
property IntPtr AttachedEditWindow {
    IntPtr get ();
    void set (IntPtr value);
}
/** @property */
public IntPtr get_AttachedEditWindow()
/** @property */
public  void set_AttachedEditWindow(IntPtr value)
public function get AttachedEditWindow () : IntPtr
public function set AttachedEditWindow (value : IntPtr)

属性值

类型:System.IntPtr
TextInputPanel 对象附加到的窗口句柄。

示例

此示例创建一个 TextInputPanel 对象 tip,并通过设置 AttachedEditWindow 属性来将其附加到 TextBox 控件 textBox1。

tip = New TextInputPanel()
tip.AttachedEditWindow = textBox1.Handle
tip = new TextInputPanel();
tip.AttachedEditWindow = textBox1.Handle;

平台

Windows Vista, Windows XP SP2, Windows Server 2003

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

TextInputPanel 类

TextInputPanel 成员

Microsoft.Ink.TextInput 命名空间