ColorDialog: Named Color or R G B value : ColorDialog « GUI « VB.Net Tutorial

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. Stream File
13. GUI
14. GUI Applications
15. 2D Graphics
16. I18N Internationlization
17. Reflection
18. Regular Expressions
19. Security
20. Socket Network
21. Thread
22. Windows
23. XML
24. Database ADO.net
25. Design Patterns
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial » GUI » ColorDialog 
13. 66. 2. ColorDialog: Named Color or R G B value
ColorDialog: Named Color or R G B value
 


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

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

Public Class Form1
    Private Sub ActChange_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles ActChange.Click
        ColorSelector.Color = ColorDisplay.BackColor
        If (ColorSelector.ShowDialog() = Windows.Forms.DialogResult.OKThen
            ColorDisplay.BackColor = ColorSelector.Color
            If (ColorSelector.Color.IsNamedColor = TrueThen
                ColorName.Text = ColorSelector.Color.Name
            Else
                ColorName.Text = "R" & ColorSelector.Color.R & " G" & ColorSelector.Color.G & " B" & ColorSelector.Color.B
            End If
        End If
    End Sub
End Class


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

    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected 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.ColorDisplay = New System.Windows.Forms.PictureBox
        Me.ActChange = New System.Windows.Forms.Button
        Me.Label1 = New System.Windows.Forms.Label
        Me.ColorName = New System.Windows.Forms.Label
        Me.ColorSelector = New System.Windows.Forms.ColorDialog
        CType(Me.ColorDisplay, System.ComponentModel.ISupportInitialize).BeginInit()
        Me.SuspendLayout()
        '
        'ColorDisplay
        '
        Me.ColorDisplay.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.ColorDisplay.Location = New System.Drawing.Point(8824)
        Me.ColorDisplay.Name = "ColorDisplay"
        Me.ColorDisplay.Size = New System.Drawing.Size(12864)
        Me.ColorDisplay.TabIndex = 0
        Me.ColorDisplay.TabStop = False
        '
        'ActChange
        '
        Me.ActChange.Location = New System.Drawing.Point(14496)
        Me.ActChange.Name = "ActChange"
        Me.ActChange.Size = New System.Drawing.Size(7523)
        Me.ActChange.TabIndex = 1
        Me.ActChange.Text = "Change..."
        Me.ActChange.UseVisualStyleBackColor = True
        '
        'Label1
        '
        Me.Label1.AutoSize = True
        Me.Label1.Location = New System.Drawing.Point(88)
        Me.Label1.Name = "Label1"
        Me.Label1.Size = New System.Drawing.Size(7413)
        Me.Label1.TabIndex = 2
        Me.Label1.Text = "Current Color: "
        '
        'ColorName
        '
        Me.ColorName.AutoSize = True
        Me.ColorName.Location = New System.Drawing.Point(868)
        Me.ColorName.Name = "ColorName"
        Me.ColorName.Size = New System.Drawing.Size(6913)
        Me.ColorName.TabIndex = 3
        Me.ColorName.Text = "Not Selected"
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(228128)
        Me.Controls.Add(Me.ColorName)
        Me.Controls.Add(Me.Label1)
        Me.Controls.Add(Me.ActChange)
        Me.Controls.Add(Me.ColorDisplay)
        Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
        Me.MaximizeBox = False
        Me.MinimizeBox = False
        Me.Name = "Form1"
        Me.Text = "Select Color"
        CType(Me.ColorDisplay, System.ComponentModel.ISupportInitialize).EndInit()
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents ColorDisplay As System.Windows.Forms.PictureBox
    Friend WithEvents ActChange As System.Windows.Forms.Button
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents ColorName As System.Windows.Forms.Label
    Friend WithEvents ColorSelector As System.Windows.Forms.ColorDialog

End Class

        
13. 66. ColorDialog
13. 66. 1. Set ColorDialog propertiesSet ColorDialog properties
13. 66. 2. ColorDialog: Named Color or R G B valueColorDialog: Named Color or R G B value
13. 66. 3. Use Color Dialog to set ColorUse Color Dialog to set Color
13. 66. 4. Color Dialog with custom color settings
ww_w.__ja__va___2_s.c___om | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.