UserControl1.vb
上传用户:websnack
上传日期:2022-08-01
资源大小:53k
文件大小:2k
源码类别:

系统编程

开发平台:

Visual C++

  1. Public Class UserControl1
  2.     Inherits System.Windows.Forms.UserControl
  3. #Region " Windows Form Designer generated code "
  4.     Public Sub New()
  5.         MyBase.New()
  6.         'This call is required by the Windows Form Designer.
  7.         InitializeComponent()
  8.         'Add any initialization after the InitializeComponent() call
  9.     End Sub
  10.     'UserControl overrides dispose to clean up the component list.
  11.     Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
  12.         If disposing Then
  13.             If Not (components Is Nothing) Then
  14.                 components.Dispose()
  15.             End If
  16.         End If
  17.         MyBase.Dispose(disposing)
  18.     End Sub
  19.     'Required by the Windows Form Designer
  20.     Private components As System.ComponentModel.IContainer
  21.     'NOTE: The following procedure is required by the Windows Form Designer
  22.     'It can be modified using the Windows Form Designer.  
  23.     'Do not modify it using the code editor.
  24.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  25.         '
  26.         'UserControl1
  27.         '
  28.         Me.Name = "UserControl1"
  29.         Me.Size = New System.Drawing.Size(150, 24)
  30.     End Sub
  31. #End Region
  32.     Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)
  33.         Dim g As Graphics = e.Graphics
  34.         Dim p As Pen = New Pen(Color.Black)
  35.         p.Width = 2
  36.         p.DashCap = Drawing.Drawing2D.DashCap.Round
  37.         g.DrawRectangle(p, 1, 1, Me.Width - 5, Me.Height - 5)
  38.     End Sub
  39. End Class