Construct Color from R G B Value : Color « 2D « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net » 2D » Color 




Construct Color from R G B Value
Construct Color from R G B Value

Imports System
Imports System.Collections
Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Data
Imports System.Configuration
Imports System.Resources
Imports System.Drawing
Imports System.Drawing.Drawing2D

Public Class MainClass
    Shared Sub Main()

        Dim myform As Form = New DrawingForm()
        Application.Run(myform)
    End Sub

End Class


Public Class DrawingForm
    Inherits System.Windows.Forms.Form

#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

    'Form overrides dispose to clean up the component list.
    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

    '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.
    Friend WithEvents drawEllipseButton As System.Windows.Forms.Button
    <System.Diagnostics.DebuggerStepThrough()Private Sub InitializeComponent()
        Me.drawEllipseButton = New System.Windows.Forms.Button()
        Me.SuspendLayout()
        '
        'drawEllipseButton
        '
        Me.drawEllipseButton.Location = New System.Drawing.Point(4332)
        Me.drawEllipseButton.Name = "drawEllipseButton"
        Me.drawEllipseButton.TabIndex = 1
        Me.drawEllipseButton.Text = "Draw Ellipse"
        '
        'Form1
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(513)
        Me.ClientSize = New System.Drawing.Size(16086)
        Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.drawEllipseButton})
        Me.Name = "Form1"
        Me.Text = "Form1"
        Me.ResumeLayout(False)

    End Sub

#End Region

    Dim drawEllipse As Boolean = False

    Private Sub drawEllipseButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles drawEllipseButton.Click
        drawEllipse = Not drawEllipse
        Me.Refresh()
    End Sub

    Private Sub DrawingForm_Paint(ByVal sender As Object, ByVal e As PaintEventArgsHandles MyBase.Paint
        Dim blue25PercentOpaque As Color = Color.FromArgb(255 400255)
        Dim blue75PercentOpaque As Color = Color.FromArgb(-1090518785)
        Dim white As Color = Color.FromArgb(255255255)
        Dim black As Color = Color.FromArgb(000)
        Dim blue1 As Color = Color.BlueViolet
        Dim blue2 As Color = Color.FromKnownColor(KnownColor.ActiveBorder)
        Dim blue3 As Color = Color.FromName("ActiveBorder")
        Dim htmlBlue As Color = ColorTranslator.FromHtml("#0000ff")

        If Not drawEllipse Then Return
        Dim As Graphics = e.Graphics
        Dim As Brush = New SolidBrush(blue25PercentOpaque)
        g.FillEllipse(b, Me.ClientRectangle)

    End Sub

End Class

           
       














Related examples in the same category
1.Get all Known color and calcuate its Brightness and SaturationGet all Known color and calcuate its Brightness and Saturation
2.Track Form background ColorTrack Form background Color
3.Using different colors in Visual BasicUsing different colors in Visual Basic
4.Color Dialog: Changing the background and text colors of a formColor Dialog: Changing the background and text colors of a form
5.Use color dialog to set form backgroundUse color dialog to set form background
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.