ComboBox Cell renderer : ComboBox « 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 » ComboBox 
13. 6. 7. ComboBox Cell renderer
ComboBox Cell renderer
 

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

<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.XButton = New System.Windows.Forms.Button
        Me.ColorList = New System.Windows.Forms.ComboBox
        Me.SuspendLayout()
        '
        'XButton
        '
        Me.XButton.Location = New System.Drawing.Point(11224)
        Me.XButton.Name = "XButton"
        Me.XButton.Size = New System.Drawing.Size(7523)
        Me.XButton.TabIndex = 0
        Me.XButton.Text = "Button1"
        Me.XButton.UseVisualStyleBackColor = True
        '
        'ColorList
        '
        Me.ColorList.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed
        Me.ColorList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
        Me.ColorList.FormattingEnabled = True
        Me.ColorList.Location = New System.Drawing.Point(8864)
        Me.ColorList.Name = "ColorList"
        Me.ColorList.Size = New System.Drawing.Size(12121)
        Me.ColorList.TabIndex = 1
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(292221)
        Me.Controls.Add(Me.ColorList)
        Me.Controls.Add(Me.XButton)
        Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
        Me.MaximizeBox = False
        Me.Name = "Form1"
        Me.Text = "Control Drawing"
        Me.ResumeLayout(False)

    End Sub
    Friend WithEvents XButton As System.Windows.Forms.Button
    Friend WithEvents ColorList As System.Windows.Forms.ComboBox

End Class
Public Class Form1
    Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgsHandles Me.Load
        ColorList.Items.Add("Red")
        ColorList.Items.Add("Orange")
        ColorList.Items.Add("Yellow")
        ColorList.Items.Add("Green")
        ColorList.Items.Add("Blue")
        ColorList.Items.Add("Indigo")
        ColorList.Items.Add("Violet")
    End Sub

    Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgsHandles Me.Paint
        e.Graphics.DrawEllipse(Pens.Black, 1010, Me.ClientRectangle.Width - 20, _
            Me.ClientRectangle.Height - 20)
    End Sub

    Private Sub XButton_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgsHandles XButton.Paint
        Dim usePen As Pen

        e.Graphics.Clear(SystemColors.Control)

        usePen = New Pen(SystemColors.ControlText, 3)
        e.Graphics.DrawRectangle(usePen, XButton.ClientRectangle)

        usePen.Dispose()
    End Sub

    Private Sub ColorList_DrawItem(ByVal sender As Object, ByVal e As System.Windows.Forms.DrawItemEventArgsHandles ColorList.DrawItem
        Dim useBrush As Brush

        If (e.Index = -1Then Return

        e.DrawBackground()

        useBrush = New SolidBrush(Color.FromName(CStr(ColorList.Items(e.Index))))
        e.Graphics.FillRectangle(useBrush, _
            e.Bounds.Left + 2, e.Bounds.Top + 2, _
            e.Bounds.Width - 4, e.Bounds.Height - 4)
        useBrush.Dispose()

        e.Graphics.DrawRectangle(Pens.Black, _
            e.Bounds.Left + 2, e.Bounds.Top + 2, _
            e.Bounds.Width - 4, e.Bounds.Height - 4)
        e.DrawFocusRectangle()
    End Sub

    Private Sub XButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles XButton.Click
        MsgBox("Button clicked.")
    End Sub
End Class

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

        
13. 6. ComboBox
13. 6. 1. Get Text from ComboBoxGet Text from ComboBox
13. 6. 2. Set text for ComboBoxSet text for ComboBox
13. 6. 3. ComboBox Selected Index Changed eventComboBox Selected Index Changed event
13. 6. 4. Add value to ComboBoxAdd value to ComboBox
13. 6. 5. ComboBox selection event and Add itemsComboBox selection event and Add items
13. 6. 6. Using ComboBox to select shape to drawUsing ComboBox to select shape to draw
13. 6. 7. ComboBox Cell rendererComboBox Cell renderer
13. 6. 8. Use ComboBox to control TextBox font colorUse ComboBox to control TextBox font color
13. 6. 9. HatchBrush Illustration by using ComboBoxHatchBrush Illustration by using ComboBox
w___w__w__.___j__a_v_a__2_s___.__c__o___m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.