InkCollectorCursorInRangeEventArgs.NewCursor 属性
获取一个布尔值,该值指示此 InkCollector 对象是否第一次与生成 CursorInRange 事件的 Cursor 对象相联系。
命名空间: Microsoft.Ink
程序集: Microsoft.Ink(在 Microsoft.Ink.dll 中)
语法
声明
Public ReadOnly Property NewCursor As Boolean
用法
Dim instance As InkCollectorCursorInRangeEventArgs
Dim value As Boolean
value = instance.NewCursor
public bool NewCursor { get; }
public:
property bool NewCursor {
bool get ();
}
/** @property */
public boolean get_NewCursor()
public function get NewCursor () : boolean
属性值
类型:System.Boolean
一个值,指示此 InkCollector 对象是否第一次与生成 CursorInRange 事件的 Cursor 对象相联系。
值 |
含义 |
---|---|
true |
此 InkCollector 对象第一次与此 Cursor 对象相联系。 |
false |
此 InkCollector 之前与此 Cursor 联系过。 |
示例
在此示例中,当 CursorInRange 事件激发时,将检查 InkCollector 对象是否第一次与此特定 Cursor 对象相联系。如果是,则将 DefaultDrawingAttributes 属性的复本分配给 DrawingAttributes 属性。这将确保对 DrawingAttributes 属性的后续访问不会引发 null 引用异常。
Private Sub mInkObject_CursorInRange(ByVal sender As Object, ByVal e As InkCollectorCursorInRangeEventArgs)
Const MOUSE_CURSOR_ID As Integer = 1
If e.NewCursor Then
' mInkObject can be InkCollector, InkOverlay, or InkPicture
e.Cursor.DrawingAttributes = mInkObject.DefaultDrawingAttributes.Clone()
' if this cursor is the mouse, we'll set color to red
If (MOUSE_CURSOR_ID = e.Cursor.Id) Then
e.Cursor.DrawingAttributes.Color = Color.Red
End If
End If
End Sub
private void mInkObject_CursorInRange(object sender, InkCollectorCursorInRangeEventArgs e)
{
const int MOUSE_CURSOR_ID = 1;
if (e.NewCursor)
{
// mInkObject can be InkCollector, InkOverlay, or InkPicture
e.Cursor.DrawingAttributes = mInkObject.DefaultDrawingAttributes.Clone();
// if this cursor is the mouse, we'll set color to red
if (MOUSE_CURSOR_ID == e.Cursor.Id)
{
e.Cursor.DrawingAttributes.Color = Color.Red;
}
}
}
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0
另请参见
参考
InkCollectorCursorInRangeEventArgs 类