Click here to Skip to main content
15,895,799 members
Articles / Programming Languages / Visual Basic
Article

Multifunctional Checkbox for Visual Studio .NET

Rate me:
Please Sign up or sign in to vote.
1.73/5 (14 votes)
13 May 2005 57.6K   154   14  
CheckBox with different checked and border styles.

Sample Image - CheckBox.gif

Introduction

This article introduces check boxes with different checked and border styles. The following lists shows the different properties and events associated with them.

Properties

  • Caption (String) - Addition of a text.
  • TextColor (Color) - Color of the text.
  • TextFont (Font)- Font of the text.
  • CStyle (Enumeration) - Kind of selected graphics.
  • FStyle (Enumeration) - Visible style.
  • StyleKind (Enumeration) - Kind of visible style.
  • SmoothingMode (SmoothingMode) - Quality of the graphics.
  • CheckedState (Boolean) - CheckBox is selected or deselected.
  • CheckedColor (Color) - Selected color.

Events

  • BeforeChanging - Event which will execute before checking.
  • CheckedChanged - Event which will execute after checking.

Examples

VB
'Show "MessageBox" after click with current "Checked_State"
Private Sub CheckBox1_CheckedChanged(ByVal Checked_State As Boolean) _
      Handles CheckBox1.CheckedChanged
    MsgBox(Checked_State)
End Sub
VB
'Change "ForeColor" of the text after click
Private Sub CheckBox1_CheckedChanged(ByVal Checked_State As Boolean) _
     Handles CheckBox1.CheckedChanged
    CheckBox1.ForeColor = Color.Red
End Sub
VB
'Change kind of style after click
Private Sub CheckBox1_CheckedChanged(ByVal Checked_State As Boolean) _
    Handles CheckBox1.CheckedChanged
    'Change CheckBox Style
    CheckBox1.FStyle = CheckBox.CheckBox.Flat_Style.Blue 
    'Paint 'X' as checked_State
    CheckBox1.CStyle = CheckBox.CheckBox.Check_style.Draw_X 
    'Draw circle as CheckBox field
    CheckBox1.StyleKind = CheckBox.CheckBox.Style_Kind.Circle 
End Sub
VB
'Change "SmoothingMode"
Private Sub CheckBox1_CheckedChanged(ByVal Checked_State As Boolean) _
         Handles CheckBox1.CheckedChanged
    CheckBox1.SmoothingMode = Drawing2D.SmoothingMode.HighQuality
End Sub

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --