'宣言 Public Property GlyphInfo As Infragistics.Win.GlyphInfoBase
public Infragistics.Win.GlyphInfoBase GlyphInfo {get; set;}
標準的なグリフを使用するには、このプロパティを静的な UIElementDrawParams.StandardRadioButtonGlyphInfo インスタンスに設定します。
Office2007 のグリフを使用するには、このプロパティを静的な UIElementDrawParams.Office2007RadioButtonGlyphInfo インスタンスに設定します。
注: アプリケーションのすべての Infragistics コントロールに GlyphInfo を設定したい場合、静的な Infragistics.Win.UIElementDrawParams.RadioButtonGlyphInfo プロパティを使用します。各コントロールに GlyphInfo を設定する必要はありません。このコントロール設定は、UIElementDrawParams 設定をオーバーライドします。
Imports Infragistics.Win Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ' Use the default glyph info ' This will be themed or unthemed depening on the system settings. Me.ultraOptionSet1.ResetGlyphInfo() ' Turn off themes. Me.ultraOptionSet2.UseOsThemes = DefaultableBoolean.False ' Use the standard checkbox style. Me.ultraOptionSet2.GlyphInfo = UIElementDrawParams.StandardRadioButtonGlyphInfo ' Use the office 2007 checkbox glyphs. Me.ultraOptionSet3.UseOsThemes = DefaultableBoolean.False Me.ultraOptionSet3.GlyphInfo = UIElementDrawParams.Office2007RadioButtonGlyphInfo End Sub
using Infragistics.Win; private void Form1_Load(object sender, EventArgs e) { // Use the default glyph info // This will be themed or unthemed depening on the system settings. this.ultraOptionSet1.ResetGlyphInfo(); // Turn off themes. this.ultraOptionSet2.UseOsThemes = DefaultableBoolean.False; // Use the standard checkbox style. this.ultraOptionSet2.GlyphInfo = UIElementDrawParams.StandardRadioButtonGlyphInfo; // Use the office 2007 checkbox glyphs. this.ultraOptionSet3.UseOsThemes = DefaultableBoolean.False; this.ultraOptionSet3.GlyphInfo = UIElementDrawParams.Office2007RadioButtonGlyphInfo; }