formprecipatation.vb

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

VB
100
字号
' -----------------------------------------------------------------------------
' 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 FormPrecipitation
   Inherits System.Windows.Forms.Form
   Friend WithEvents lboxPast As System.Windows.Forms.ListBox
   Friend WithEvents Label3 As System.Windows.Forms.Label
   Friend WithEvents lblCurrent As System.Windows.Forms.Label
   Friend WithEvents Label1 As System.Windows.Forms.Label

#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.lboxPast = New System.Windows.Forms.ListBox
      Me.Label3 = New System.Windows.Forms.Label
      Me.lblCurrent = New System.Windows.Forms.Label
      Me.Label1 = New System.Windows.Forms.Label
      '
      'lboxPast
      '
      Me.lboxPast.Location = New System.Drawing.Point(130, 46)
      Me.lboxPast.Size = New System.Drawing.Size(100, 198)
      '
      'Label3
      '
      Me.Label3.Font = New System.Drawing.Font("Tahoma", 11.0!, System.Drawing.FontStyle.Regular)
      Me.Label3.Location = New System.Drawing.Point(130, 14)
      Me.Label3.Text = "Past 24 Hours"
      '
      'lblCurrent
      '
      Me.lblCurrent.Font = New System.Drawing.Font("Tahoma", 13.0!, System.Drawing.FontStyle.Regular)
      Me.lblCurrent.Location = New System.Drawing.Point(10, 46)
      '
      'Label1
      '
      Me.Label1.Font = New System.Drawing.Font("Tahoma", 13.0!, System.Drawing.FontStyle.Regular)
      Me.Label1.Location = New System.Drawing.Point(10, 14)
      Me.Label1.Text = "Current"
      '
      'FormPrecipitation
      '
      Me.Controls.Add(Me.lboxPast)
      Me.Controls.Add(Me.Label3)
      Me.Controls.Add(Me.lblCurrent)
      Me.Controls.Add(Me.Label1)
      Me.Text = "Precipitation"

   End Sub

#End Region

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

   Private Sub LoadRainFalls()
      '  Load sample rainfalls into controls.
      Dim asinRains() As Single = _
                           {0.12, 0.12, 0.13, 0.13, 0.13, 0.13, _
                            0.14, 0.14, 0.14, 0.15, 0.16, 0.16, _
                            0.16, 0.16, 0.17, 0.17, 0.16, 0.16, _
                            0.15, 0.15, 0.14, 0.14, 0.13, 0.13}

      lblCurrent.Text = asinRains(0)
      With lboxPast.Items
         Dim sinRain As Single
         For Each sinRain In asinRains
            .Add(sinRain.ToString())
         Next
      End With
   End Sub

End Class

⌨️ 快捷键说明

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