PenInputPanel.Width 属性

已否决。获取笔输入面板的宽度(以工作区坐标表示)。PenInputPanel 已由 Microsoft.Ink.TextInput 替换。

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

语法

声明
Public ReadOnly Property Width As Integer
用法
Dim instance As PenInputPanel
Dim value As Integer

value = instance.Width
public int Width { get; }
public:
property int Width {
    int get ();
}
/** @property */
public int get_Width()
public function get Width () : int

属性值

类型:System.Int32
笔输入面板的宽度(以工作区坐标表示)。

含义

456

像素个数,等于每英寸点数 (dpi) 为 96 的 4.75 英寸。

570

像素个数,等于 120 dpi 的 4.75 英寸。

632

像素个数,等于 133 dpi 的 4.75 英寸。

备注

PenInputPanel 对象的宽度依赖于特定 Tablet PC 的屏幕分辨率。

从 Microsoft(R) Windows(R) XP Tablet PC Edition 2005 开始,通过自动增加输入面板 的大小来容纳新的手写内容,Tablet PC 输入面板 允许用户继续输入手写内容。当输入面板增大时,Height 和 Width 属性不会更新以反映新大小。这些属性返回输入面板的原始大小。它们也不会报告输入面板悬停目标的大小。

ms571985.alert_security(zh-cn,VS.90).gif安全说明:

如果在部分信任环境下使用,则除了 PenInputPanel 所需的权限以外,该属性还需要 SecurityPermissionFlag.AllFlags 权限。有关更多信息,请参见Security and Trust

示例

此 C# 示例创建 PenInputPanel 对象 thePenInputPanel,并将它附加到 InkEdit 控件 inkEdit1。然后,它附加 VisibleChanged 事件处理程序 VisibleChanged_Event。在该事件处理程序中,它将一个句子添加到 PenInputPanel 附加到的编辑控件的内容中。这个句子通过检索 Width 属性并使用 ToString 方法将该属性转换为字符串,描述笔输入面板的宽度(以像素为单位)。

[C#]

//...

// Delcare the PenInputPanel object
PenInputPanel thePenInputPanel;

public Form1()
{
    // Required for Windows Form Designer support
    InitializeComponent();

    // Create and attach the new PenInputPanel to an InkEdit control.
    thePenInputPanel = new PenInputPanel(inkEdit1);

    // Add a VisibleChanged event handler
    thePenInputPanel.VisibleChanged +=
        new PenInputPanelVisibleChangedEventHandler(VisibleChanged_Event);
}

//...

public void VisibleChanged_Event(object sender,
                                 PenInputPanelVisibleChangedEventArgs e)
{
    // Make sure the object that generated
    // the event is a PenInputPanel object
    if (sender is PenInputPanel)
    {
        PenInputPanel theSenderPanel = (PenInputPanel)sender;

        // When the panel has become visible...
        if (e.NewVisibility)
        {
            // Display the width of the panel in the attached edit control
            theSenderPanel.AttachedEditControl.Text +=
                    "The width of the panel is ";
            theSenderPanel.AttachedEditControl.Text +=
                     theSenderPanel.Width.ToString();
            theSenderPanel.AttachedEditControl.Text += " pixels.\n";
        }
    }
}

此 Microsoft Visual Basic(R) .NET 示例创建 PenInputPanel 对象 thePenInputPanel,并将它附加到 InkEdit 控件 InkEdit1。然后,它附加 VisibleChanged 事件处理程序 VisibleChanged_Event。在该事件处理程序中,它将一个句子添加到 PenInputPanel 附加到的编辑控件的内容中。这个句子通过检索 Width 属性并使用 ToString 方法将该属性转换为字符串,描述笔输入面板的宽度(以像素为单位)。

[Visual Basic]

'...

' Declare the PenInputPanel object
Dim thePenInputPanel As PenInputPanel

Public Sub New()
    MyBase.New()

    ' Required for Windows Form Designer support
    InitializeComponent()

    ' Create and attach the new PenInputPanel to an InkEdit control.
    thePenInputPanel = New PenInputPanel(InkEdit1)

    ' Add a VisibleChanged event handler
    AddHandler thePenInputPanel.VisibleChanged, _
               AddressOf VisibleChanged_Event
End Sub 'New

'...

Public Sub VisibleChanged_Event(sender As Object, e As _
                                PenInputPanelVisibleChangedEventArgs)
    ' Make sure the object that generated
    ' the event is a PenInputPanel object
    If TypeOf sender Is PenInputPanel Then
       Dim theSenderPanel As PenInputPanel = CType(sender, PenInputPanel)

       ' When the panel has become visible...
       If e.NewVisibility Then
          ' Display the width of the panel in the attached edit control
          theSenderPanel.AttachedEditControl.Text += _
                   "The width of the panel is "

          theSenderPanel.AttachedEditControl.Text += _
                   theSenderPanel.Width.ToString()

         theSenderPanel.AttachedEditControl.Text += _
                  " pixels." + ControlChars.Lf
       End If
    End If
End Sub 'VisibleChanged_Event

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

PenInputPanel 类

PenInputPanel 成员

Microsoft.Ink 命名空间

PenInputPanel.Height