Version

RadioButtonGlyphInfo Property (UIElementDrawParams)

Determines how radio buttons are drawn.
Syntax
'Declaration
 
Public Shared Property RadioButtonGlyphInfo As GlyphInfoBase
public static GlyphInfoBase RadioButtonGlyphInfo {get; set;}
Remarks

This property will affect all Infragistics WinForms controls that draw RadioButtones.

The setting may be overriden on individual controls. For example, the UltraOptionSet control has a GlyphInfo property. The setting on the indivudual control will override this global setting.

Note: Setting this property will not force a repaint of controls. Therefore it is recommended that this property be set when the applicaiton starts, before the controls have pained, such as in the Load event of the main application form.

Example
using Infragistics.Win;

// Set all checkboxes to display using Office2007 style. 
UIElementDrawParams.RadioButtonGlyphInfo = UIElementDrawParams.Office2007RadioButtonGlyphInfo;
using Infragistics.Win.UltraWinEditors;
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