Version

RadioButtonImageGlyphInfo Constructor(Bitmap,String)

Creates a new RadioButtonGlyphInfo using the combined image specified.
Syntax
'Declaration
 
Public Function New( _
   ByVal combinedGlyphImage As Bitmap, _
   ByVal description As String _
)
public RadioButtonImageGlyphInfo( 
   Bitmap combinedGlyphImage,
   string description
)

Parameters

combinedGlyphImage
A bitmap containing all possible states of the CheckBox.
description
A string description of the glyphs.
Remarks

The combinedGlyphImage is a single image which contains all of the possisble states that a RadioButton Glyph may draw. The images must all be the same size (glyphSize) and are arranged in a grid.

There must be two rows in the grid.

Row 0 is the Radiobutton in it's unchecked (unselected) state.

Row 1 is the Radiobutton in it's checked (selected) state.

There must be 5 columns in the grid.

Column 0 is the Radiobutton in it's disabled state.

Column 1 is the Radiobutton in it's normal state.

Column 2 is the Radiobutton in it's MouseOver state.

Column 3 is the Radiobutton in it's MouseDown state.

Column 4 is the Radiobutton in it's MouseOver and MouseDown state.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also