InkPicture.SelectionResizing 事件

在当前选择内容的大小即将更改(例如通过修改用户界面、剪切粘贴过程或 Selection 属性进行更改)时发生。

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

语法

声明
Public Event SelectionResizing As InkOverlaySelectionResizingEventHandler
用法
Dim instance As InkPicture
Dim handler As InkOverlaySelectionResizingEventHandler

AddHandler instance.SelectionResizing, handler
public event InkOverlaySelectionResizingEventHandler SelectionResizing
public:
 event InkOverlaySelectionResizingEventHandler^ SelectionResizing {
    void add (InkOverlaySelectionResizingEventHandler^ value);
    void remove (InkOverlaySelectionResizingEventHandler^ value);
}
/** @event */
public void add_SelectionResizing (InkOverlaySelectionResizingEventHandler value)
/** @event */
public void remove_SelectionResizing (InkOverlaySelectionResizingEventHandler value)
JScript 不支持事件。

备注

事件处理程序接收 InkOverlaySelectionResizingEventArgs 类型的参数,该参数包含有关此事件的数据。

创建 InkOverlaySelectionResizingEventHandler 委托时,需要标识将处理该事件的方法。若要将该事件与事件处理程序关联,请将该委托的一个实例添加到事件中。除非移除了该委托,否则每当发生该事件时就会调用此事件处理程序。出于性能方面的原因,默认事件关注处于关闭状态,但如果添加事件处理程序,它将自动打开。

示例

在下面的示例中,SelectionResizing 事件处理程序在所选内容调整大小之前检查该内容。如果所选内容在调整大小之后有任何部分位于窗口边界之外,则事件处理程序将通过更改每个所选 Stroke 对象的 Color 属性,将所选内容的颜色更改为红色。

Private Sub mInkPicture_SelectionResizing(ByVal sender As Object, ByVal e As InkOverlaySelectionResizingEventArgs)
    If e.NewPixelRect.Left < 0 Or e.NewPixelRect.Top < 0 Or _
       e.NewPixelRect.Right > mInkPicture.ClientRectangle.Width Or _
       e.NewPixelRect.Bottom > mInkPicture.ClientRectangle.Height Then

        For Each stroke As Stroke In mInkPicture.Selection
            ' change the stroke color
            stroke.DrawingAttributes.Color = Color.Red
        Next

    End If
End Sub
private void mInkPicture_SelectionResizing(object sender, InkOverlaySelectionResizingEventArgs e)
{
    if (e.NewPixelRect.Left < 0 || e.NewPixelRect.Top < 0 ||
        e.NewPixelRect.Right > mInkPicture.ClientRectangle.Width ||
        e.NewPixelRect.Bottom > mInkPicture.ClientRectangle.Height)
    {
        foreach (Stroke stroke in mInkObject.Selection)
        {
            // change the stroke color
            stroke.DrawingAttributes.Color = Color.Red;
        }
    }
}

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

InkPicture 类

InkPicture 成员

Microsoft.Ink 命名空间

InkOverlaySelectionResizingEventArgs

InkPicture.Selection

InkPicture.SelectionResized