formgage.vb

来自「Programming the .NET Compact Framework w」· VB 代码 · 共 84 行

VB
84
字号
' -----------------------------------------------------------------------------
' Code from _Programming the .NET Compact Framework with VB_
' and _Programming the .NET Compact Framework with C#_
' (c) Copyright 2002-2004 Paul Yao and David Durant. 
' All rights reserved.
' -----------------------------------------------------------------------------

Imports System
Imports System.Drawing
Imports System.Windows.forms

Public Class FormGage
   Inherits System.Windows.Forms.Form

   Protected Friend WithEvents Label1 As Label
   Protected Friend WithEvents lblCurrent As Label
   Protected Friend WithEvents Label3 As Label
   Protected Friend WithEvents lboxPast As ListBox

#Region " Windows Form Designer generated code "

   Public Sub New()
      MyBase.New()

      'This call is required by the Windows Form Designer.
      InitializeComponent()

      'Add any initialization after the InitializeComponent() call

   End Sub

   Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
      MyBase.Dispose(disposing)
   End Sub

   'NOTE: The following procedure is required by the Windows Form Designer
   'It can be modified using the Windows Form Designer.  
   'Do not modify it using the code editor.
   <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
      Me.Label1 = New System.Windows.Forms.Label
      Me.lblCurrent = New System.Windows.Forms.Label
      Me.Label3 = New System.Windows.Forms.Label
      Me.lboxPast = New System.Windows.Forms.ListBox
      '
      'Label1
      '
      Me.Label1.Font = New System.Drawing.Font("Tahoma", 13.0!, System.Drawing.FontStyle.Regular)
      Me.Label1.Location = New System.Drawing.Point(8, 8)
      Me.Label1.Text = "Current"
      '
      'lblCurrent
      '
      Me.lblCurrent.Font = New System.Drawing.Font("Tahoma", 13.0!, System.Drawing.FontStyle.Regular)
      Me.lblCurrent.Location = New System.Drawing.Point(8, 40)
      '
      'Label3
      '
      Me.Label3.Font = New System.Drawing.Font("Tahoma", 11.0!, System.Drawing.FontStyle.Regular)
      Me.Label3.Location = New System.Drawing.Point(128, 8)
      Me.Label3.Text = "Past 24 Hours"
      '
      'lboxPast
      '
      Me.lboxPast.Location = New System.Drawing.Point(128, 40)
      Me.lboxPast.Size = New System.Drawing.Size(100, 212)
      '
      'FormGage
      '
      Me.Controls.Add(Me.lboxPast)
      Me.Controls.Add(Me.Label3)
      Me.Controls.Add(Me.lblCurrent)
      Me.Controls.Add(Me.Label1)
      Me.Text = "Gage"

   End Sub

#End Region

   Private Sub Me_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
      Me.MinimizeBox = False
   End Sub

End Class

⌨️ 快捷键说明

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