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.EventArgs) Handles ActChange.Click
ColorSelector.Color = ColorDisplay.BackColor
If (ColorSelector.ShowDialog() = Windows.Forms.DialogResult.OK) Then
ColorDisplay.BackColor = ColorSelector.Color
If (ColorSelector.Color.IsNamedColor = True) Then
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(88, 24)
Me.ColorDisplay.Name = "ColorDisplay"
Me.ColorDisplay.Size = New System.Drawing.Size(128, 64)
Me.ColorDisplay.TabIndex = 0
Me.ColorDisplay.TabStop = False
'
'ActChange
'
Me.ActChange.Location = New System.Drawing.Point(144, 96)
Me.ActChange.Name = "ActChange"
Me.ActChange.Size = New System.Drawing.Size(75, 23)
Me.ActChange.TabIndex = 1
Me.ActChange.Text = "Change..."
Me.ActChange.UseVisualStyleBackColor = True
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(8, 8)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(74, 13)
Me.Label1.TabIndex = 2
Me.Label1.Text = "Current Color: "
'
'ColorName
'
Me.ColorName.AutoSize = True
Me.ColorName.Location = New System.Drawing.Point(86, 8)
Me.ColorName.Name = "ColorName"
Me.ColorName.Size = New System.Drawing.Size(69, 13)
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(228, 128)
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
|