Snow Animation : Animation « 2D Graphics « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » 2D Graphics » Animation 
17.90.2.Snow Animation
Snow Animation
'Visual Basic.Net JingCai Programming 100 Examples
'Author: Yong Zhang
'Publisher: Water Publisher China
'ISBN: 750841156


Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Windows.Forms

public class Snow
   public Shared Sub Main
        Application.Run(New Form1)
   End Sub
End class

Public Class Form1
    Inherits System.Windows.Forms.Form

    Public Sub New()
        MyBase.New()

        InitializeComponent()

    End Sub

    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is NothingThen
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub

    Private components As System.ComponentModel.IContainer

    Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox
    Friend WithEvents Timer1 As System.Windows.Forms.Timer
    <System.Diagnostics.DebuggerStepThrough()Private Sub InitializeComponent()
        Me.components = New System.ComponentModel.Container
        Me.PictureBox1 = New System.Windows.Forms.PictureBox
        Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
        Me.SuspendLayout()
        '
        'PictureBox1
        '
        Me.PictureBox1.Dock = System.Windows.Forms.DockStyle.Fill
        Me.PictureBox1.Location = New System.Drawing.Point(00)
        Me.PictureBox1.Name = "PictureBox1"
        Me.PictureBox1.Size = New System.Drawing.Size(292266)
        Me.PictureBox1.TabIndex = 0
        Me.PictureBox1.TabStop = False
        '
        'Timer1
        '
        Me.Timer1.Enabled = True
        Me.Timer1.Interval = 10
        '
        'Form1
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(513)
        Me.ClientSize = New System.Drawing.Size(292266)
        Me.Controls.Add(Me.PictureBox1)
        Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
        Me.ResumeLayout(False)

    End Sub

    Dim number, x(), y(), v(), s() As Integer
    Dim As Random = New Random
    Dim As System.Drawing.Graphics
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgsHandles MyBase.Load
        PictureBox1.Location = Me.Location
        PictureBox1.Size = Me.Size
        PictureBox1.SizeMode = PictureBoxSizeMode.StretchImage
        snow()
    End Sub
    Private Sub snow()
        number = 2000
        ReDim x(number - 1)
        ReDim y(number - 1)
        ReDim v(number - 1)
        ReDim s(number - 1)
        Dim As Integer
        For i = To number - 1
            Insnow(i)
        Next
    End Sub
    Private Sub Insnow(ByVal i As Integer)
        x(i= t.Next(0, Me.Width - 1)
        y(i= t.Next(0, Me.Height * 7)
        v(i= t.Next(520)
        s(i(t.Next(13100 + t.Next(50200)) 100
    End Sub

    Private Sub PictureBox1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgsHandles PictureBox1.Paint
        g = PictureBox1.CreateGraphics
        Dim As Integer
        For i = To number - 1
            g.FillEllipse(Brushes.White, x(i), y(i), s(i), s(i))
        Next
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgsHandles Timer1.Tick
        Dim As Integer
        For i = To number - 1
            y(i= y(i+ v(i)
            If y(i>= Me.Height Then
                Insnow(i)
            End If
        Next
        PictureBox1.Invalidate()
    End Sub
End Class
17.90.Animation
17.90.1.Animator
17.90.2.Snow AnimationSnow Animation
17.90.3.Program that animates a series of images
17.90.4.Scrolling Text by TimerScrolling Text by Timer
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.