InkOverlayPaintingEventArgs.Graphics 属性

获取用于绘制此项的 Graphics 对象。

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

语法

声明
Public ReadOnly Property Graphics As Graphics
用法
Dim instance As InkOverlayPaintingEventArgs
Dim value As Graphics

value = instance.Graphics
public Graphics Graphics { get; }
public:
property Graphics^ Graphics {
    Graphics^ get ();
}
/** @property */
public Graphics get_Graphics()
public function get Graphics () : Graphics

属性值

类型:System.Drawing.Graphics
用于绘制此项的对象。

示例

此 C# 示例为 Painting 事件 theInkOverlay_Painting 创建事件处理程序。该事件处理程序在将要放置 InkOverlay 的矩形中填充黄色。

private void theInkOverlay_Painting(object sender, InkOverlayPaintingEventArgs e)
{
    e.Graphics.FillRectangle(new SolidBrush(Color.Yellow), e.ClipRectangle);
}

此 Microsoft(R) Visual Basic(R) .NET 示例为 Painting 事件 theInkOverlay_Painting 创建事件处理程序。该事件处理程序在将要放置 InkOverlay 的矩形中填充黄色。

Private Sub theInkOverlay_Painting(ByVal sender As Object, ByVal e As Microsoft.Ink.InkOverlayPaintingEventArgs) _
Handles theInkOverlay.Painting
    e.Graphics.FillRectangle(New SolidBrush(Color.Yellow), e.ClipRectangle)
End Sub

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

InkOverlayPaintingEventArgs 类

InkOverlayPaintingEventArgs 成员

Microsoft.Ink 命名空间

InkOverlay

InkOverlay.Painting