Imports Infragistics.UltraGauge.Resources
テクスチャ ブラシ エレメントをゲージにプロパティに適用すると、キャンバスのようなテクスチャされたルック アンド フィールをプロパティに提供します。
コードを使用してテクスチャ ブラシ エレメントをゲージのプロパティに適用するには、次の手順に従ってください。
コードの記述を開始する前にコード ビハインドに using/Imports のディレクティブを配置します。そうすれば、メンバは完全に記述された名前を常にタイプする必要がなくなります。
Visual Basic の場合:
Imports Infragistics.UltraGauge.Resources
C# の場合:
using Infragistics.UltraGauge.Resources;
Load イベントを作成します。
クラスのインスタンスを作成します。
Visual Basic の場合:
Dim myTextureBrushElement As New TextureBrushElement() Dim myRadialGauge As RadialGauge = Me.UltraGauge1.Gauges(0)
C# の場合:
TextureBrushElement myTextureBrushElement = new TextureBrushElement(); RadialGauge myRadialGauge = this.ultraGauge1.Gauges[0] as RadialGauge;
以下のプロパティを設定します。
終了色 — シルバー
開始色 — DimGray
テクスチャ スタイル — キャンバス
Visual Basic の場合:
myTextureBrushElement.EndColor = System.Drawing.Color.Silver myTextureBrushElement.StartColor = System.Drawing.Color.DimGray myTextureBrushElement.Texture = Infragistics.UltraGauge.Resources.Texture.Canvas myRadialGauge.Dial.BrushElement = myTextureBrushElement
C# の場合:
myTextureBrushElement.EndColor = System.Drawing.Color.Silver; myTextureBrushElement.StartColor = System.Drawing.Color.DimGray; myTextureBrushElement.Texture = Infragistics.UltraGauge.Resources.Texture.Canvas; myRadialGauge.Dial.BrushElement = myTextureBrushElement;