本文整理汇总了VB.NET中System.Drawing.Graphics.Transform属性的典型用法代码示例。如果您正苦于以下问题:VB.NET Graphics.Transform属性的具体用法?VB.NET Graphics.Transform怎么用?VB.NET Graphics.Transform使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类System.Drawing.Graphics
的用法示例。
在下文中一共展示了Graphics.Transform属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: MatrixTranslationDemo
' 导入命名空间
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Windows.Forms
public class MatrixTranslationDemo
public Shared Sub Main
Application.Run(New TranslationForm)
End Sub
End class
Public Class TranslationForm
Inherits System.Windows.Forms.Form
Public Sub New()
MyBase.New()
End Sub
Sub TranlationForm_Pain(ByVal sender As Object, ByVal e As PaintEventArgs) Handles MyBase.Paint
Dim g As Graphics = e.Graphics
Dim rect As RectangleF = New RectangleF(0, 0, 125, 125)
g.FillRectangle(Brushes.White, rect)
g.DrawRectangle(Pens.Black, rect.X, rect.Y, rect.Width, rect.Height)
Dim matrix As Matrix = New Matrix()
matrix.Translate(150, 150)
g.Transform = matrix
g.FillRectangle(Brushes.White, rect)
g.DrawRectangle(Pens.Black, rect.X, rect.Y, rect.Width, rect.Height)
End Sub
End Class