ToolStripStatusLabel.Image : ToolStripStatusLabel « System.Windows.Forms « VB.Net by API

Home
VB.Net by API
1.Microsoft.VisualBasic
2.Microsoft.Win32
3.System
4.System.Collections
5.System.Collections.Generic
6.System.Collections.Specialized
7.System.ComponentModel
8.System.Configuration.ConfigurationSettings
9.System.Data
10.System.Data.Odbc
11.System.Data.OleDb
12.System.Data.OracleClient
13.System.Data.SqlClient
14.System.Diagnostics
15.System.Drawing
16.System.Drawing.Drawing2D
17.System.Drawing.Imaging
18.System.Drawing.Printing
19.System.Drawing.Text
20.System.Globalization
21.System.IO
22.System.IO.IsolatedStorage
23.System.IO.Ports
24.System.Media
25.System.Messaging
26.System.Net
27.System.Net.Sockets
28.System.Reflection
29.System.Runtime.InteropServices
30.System.Runtime.Remoting.Channels
31.System.Runtime.Serialization
32.System.Runtime.Serialization.Formatters.Binary
33.System.Runtime.Serialization.Formatters.Soap
34.System.Security.Cryptography
35.System.Security.Cryptography.X509Certificates
36.System.Security.Permissions
37.System.Security.Principal
38.System.ServiceProcess
39.System.Text
40.System.Text.RegularExpressions
41.System.Threading
42.System.Web
43.System.Web.Mail
44.System.Windows.Forms
45.System.Xml
46.System.Xml.Schema
47.System.Xml.Serialization
48.System.Xml.Xsl
VB.Net
VB.Net Tutorial
VB.Net by API » System.Windows.Forms » ToolStripStatusLabel 
ToolStripStatusLabel.Image
  
Imports System
Imports System.Data
Imports System.Collections
Imports System.Windows.Forms
Imports System.Drawing
Imports System.Data.SqlClient

public class MainClass
   Shared Sub Main()
       Dim form1 As Form = New Form1
       Application.Run(form1)
   End Sub
End Class


Public Class Form1
    Private Sub radGood_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgsHandles radGood.CheckedChanged
        slStatus.Image = New Bitmap("figure2.bmp")
    End Sub

    Private Sub radBad_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgsHandles radBad.CheckedChanged
        slStatus.Image = New Bitmap("test.ico")
    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgsHandles MyBase.Load
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgsHandles Timer1.Tick
        slTime.Text = Now.ToString("h:mm:ss tt")
    End Sub
End Class


<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Public Class Form1
    Inherits System.Windows.Forms.Form

    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing AndAlso components IsNot Nothing Then
            components.Dispose()
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer

    '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.components = New System.ComponentModel.Container
        Me.TestStatusStripPanel1 = New System.Windows.Forms.ToolStripDropDownButton
        Me.Option1ToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.Option2ToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.ProgStatusStripPanel = New System.Windows.Forms.ToolStripProgressBar
        Me.radBad = New System.Windows.Forms.RadioButton
        Me.radGood = New System.Windows.Forms.RadioButton
        Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
        Me.StatusStrip1 = New System.Windows.Forms.StatusStrip
        Me.slTime = New System.Windows.Forms.ToolStripStatusLabel
        Me.pbStatus = New System.Windows.Forms.ToolStripProgressBar
        Me.slStatus = New System.Windows.Forms.ToolStripStatusLabel
        Me.sbOptions = New System.Windows.Forms.ToolStripSplitButton
        Me.BlueToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.GreenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.RedToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.StatusStrip1.SuspendLayout()
        Me.SuspendLayout()
        '
        'TestStatusStripPanel1
        '
        Me.TestStatusStripPanel1.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.Option1ToolStripMenuItem, Me.Option2ToolStripMenuItem})
        Me.TestStatusStripPanel1.Name = "TestStatusStripPanel1"
        Me.TestStatusStripPanel1.Size = New System.Drawing.Size(2323)
        Me.TestStatusStripPanel1.Text = "Options"
        '
        'Option1ToolStripMenuItem
        '
        Me.Option1ToolStripMenuItem.Name = "Option1ToolStripMenuItem"
        Me.Option1ToolStripMenuItem.Size = New System.Drawing.Size(13922)
        Me.Option1ToolStripMenuItem.Text = "Option 1"
        '
        'Option2ToolStripMenuItem
        '
        Me.Option2ToolStripMenuItem.Name = "Option2ToolStripMenuItem"
        Me.Option2ToolStripMenuItem.Size = New System.Drawing.Size(13922)
        Me.Option2ToolStripMenuItem.Text = "Option 2"
        '
        'ProgStatusStripPanel
        '
        Me.ProgStatusStripPanel.AutoSize = False
        Me.ProgStatusStripPanel.Name = "ProgStatusStripPanel"
        Me.ProgStatusStripPanel.Size = New System.Drawing.Size(15020)
        Me.ProgStatusStripPanel.Value = 70
        '
        'radBad
        '
        Me.radBad.AutoSize = True
        Me.radBad.Location = New System.Drawing.Point(828)
        Me.radBad.Name = "radBad"
        Me.radBad.Size = New System.Drawing.Size(4417)
        Me.radBad.TabIndex = 8
        Me.radBad.Text = "Bad"
        '
        'radGood
        '
        Me.radGood.AutoSize = True
        Me.radGood.Location = New System.Drawing.Point(84)
        Me.radGood.Name = "radGood"
        Me.radGood.Size = New System.Drawing.Size(5117)
        Me.radGood.TabIndex = 7
        Me.radGood.Text = "Good"
        '
        'Timer1
        '
        Me.Timer1.Enabled = True
        Me.Timer1.Interval = 500
        '
        'StatusStrip1
        '
        Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.slStatus, Me.slTime, Me.sbOptions, Me.pbStatus})
        Me.StatusStrip1.Location = New System.Drawing.Point(065)
        Me.StatusStrip1.Name = "StatusStrip1"
        Me.StatusStrip1.Size = New System.Drawing.Size(40527)
        Me.StatusStrip1.TabIndex = 9
        Me.StatusStrip1.Text = "StatusStrip1"
        '
        'slTime
        '
        Me.slTime.Name = "slTime"
        Me.slTime.Size = New System.Drawing.Size(8222)
        Me.slTime.Text = "12:34:56 PM"
        '
        'pbStatus
        '
        Me.pbStatus.ForeColor = System.Drawing.SystemColors.ControlDarkDark
        Me.pbStatus.Name = "pbStatus"
        Me.pbStatus.Size = New System.Drawing.Size(10020)
        Me.pbStatus.Value = 69
        '
        'slStatus
        '
        Me.slStatus.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
        Me.slStatus.Image = New Bitmap("test.ico")
        Me.slStatus.Name = "slStatus"
        Me.slStatus.Size = New System.Drawing.Size(1622)
        '
        'sbOptions
        '
        Me.sbOptions.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text
        Me.sbOptions.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BlueToolStripMenuItem, Me.GreenToolStripMenuItem, Me.RedToolStripMenuItem})
        Me.sbOptions.Image = New Bitmap("figure2.bmp")
        Me.sbOptions.ImageTransparentColor = System.Drawing.Color.Magenta
        Me.sbOptions.Name = "sbOptions"
        Me.sbOptions.Size = New System.Drawing.Size(7220)
        Me.sbOptions.Text = "Options"
        '
        'BlueToolStripMenuItem
        '
        Me.BlueToolStripMenuItem.Name = "BlueToolStripMenuItem"
        Me.BlueToolStripMenuItem.Size = New System.Drawing.Size(12522)
        Me.BlueToolStripMenuItem.Text = "Blue"
        '
        'GreenToolStripMenuItem
        '
        Me.GreenToolStripMenuItem.Name = "GreenToolStripMenuItem"
        Me.GreenToolStripMenuItem.Size = New System.Drawing.Size(12522)
        Me.GreenToolStripMenuItem.Text = "Green"
        '
        'RedToolStripMenuItem
        '
        Me.RedToolStripMenuItem.Name = "RedToolStripMenuItem"
        Me.RedToolStripMenuItem.Size = New System.Drawing.Size(12522)
        Me.RedToolStripMenuItem.Text = "Red"
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(40592)
        Me.Controls.Add(Me.StatusStrip1)
        Me.Controls.Add(Me.radBad)
        Me.Controls.Add(Me.radGood)
        Me.Name = "Form1"
        Me.Text = "UseStatusStrip"
        Me.StatusStrip1.ResumeLayout(False)
        Me.StatusStrip1.PerformLayout()
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents TestStatusStripPanel1 As System.Windows.Forms.ToolStripDropDownButton
    Friend WithEvents Option1ToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents Option2ToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents ProgStatusStripPanel As System.Windows.Forms.ToolStripProgressBar
    Friend WithEvents radBad As System.Windows.Forms.RadioButton
    Friend WithEvents radGood As System.Windows.Forms.RadioButton
    Friend WithEvents Timer1 As System.Windows.Forms.Timer
    Friend WithEvents StatusStrip1 As System.Windows.Forms.StatusStrip
    Friend WithEvents slStatus As System.Windows.Forms.ToolStripStatusLabel
    Friend WithEvents slTime As System.Windows.Forms.ToolStripStatusLabel
    Friend WithEvents sbOptions As System.Windows.Forms.ToolStripSplitButton
    Friend WithEvents BlueToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents GreenToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents RedToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents pbStatus As System.Windows.Forms.ToolStripProgressBar

End Class

   
    
  
Related examples in the same category
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.