bitmappattern.vb

来自「OOP With Microsoft VB.NET And Csharp Ste」· VB 代码 · 共 30 行

VB
30
字号
Public Class BitmapPattern
    Inherits Pattern

    Private m_bitmapFile As String = ""
    Public Property BitmapFile() As String
        Get
            Return m_bitmapFile
        End Get
        Set(ByVal Value As String)
            m_bitmapFile = Value
        End Set
    End Property

    Public Overrides Sub Draw(ByVal sender As Object, _
    ByVal e As System.Windows.Forms.PaintEventArgs)
        e.Graphics.DrawImage(New _
        System.Drawing.Bitmap(m_bitmapFile), 0, 0)
    End Sub

    Public Overrides Function GetEditor() As PatternEditor
        Return New BitmapPatternEditor(Me)
    End Function

    Public Overrides Function Clone() As Pattern
        Dim newPattern As New BitmapPattern()
        newPattern.BitmapFile = Me.BitmapFile
        Return newPattern
    End Function

End Class

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?