Imports Infragistics.UltraGauge.Resources
ゲージの外観にハッチ ブラシ エレメントを適用すると、そのエレメントは 2 色のパターン化された外観が提供されます。
コードを使用してハッチ ブラシ エレメントをゲージのプロパティに適用するには、次の手順に従ってください。
コードの記述を開始する前にコード ビハインドに using/Imports のディレクティブを配置します。そうすれば、メンバは完全に記述された名前を常にタイプする必要がなくなります。
Visual Basic の場合:
Imports Infragistics.UltraGauge.Resources
C# の場合:
using Infragistics.UltraGauge.Resources;
Load イベントを作成します。
クラスのインスタンスを作成します。
Visual Basic の場合:
Dim myHatchBrushElement As New HatchBrushElement() Dim myRadialGauge As RadialGauge = Me.UltraGauge1.Gauges(0)
C# の場合:
HatchBrushElement myHatchBrushElement = new HatchBrushElement(); RadialGauge myRadialGauge = this.ultraGauge1.Gauges[0] as RadialGauge;
以下のプロパティを設定します。
背景色 — DimGray
前景色 — シルバー
ハッチ スタイル — BackwardDiagonal
Visual Basic の場合:
myHatchBrushElement.BackColor = System.Drawing.Color.DimGray myHatchBrushElement.ForeColor = System.Drawing.Color.Silver myHatchBrushElement.HatchStyle = System.Drawing.Drawing2D.HatchStyle.BackwardDiagonal myHatchBrushElement.RelativeBounds = New System.Drawing.Rectangle(3, 3, 94, 94) myHatchBrushElement.RelativeBoundsMeasure = Infragistics.UltraGauge.Resources.Measure.Percent myRadialGauge.Dial.BrushElement = myHatchBrushElement
C# の場合:
myHatchBrushElement.BackColor = System.Drawing.Color.DimGray; myHatchBrushElement.ForeColor = System.Drawing.Color.Silver; myHatchBrushElement.HatchStyle = System.Drawing.Drawing2D.HatchStyle.BackwardDiagonal; myHatchBrushElement.RelativeBounds = new System.Drawing.Rectangle(3, 3, 94, 94); myHatchBrushElement.RelativeBoundsMeasure = Infragistics.UltraGauge.Resources.Measure.Percent; myRadialGauge.Dial.BrushElement = myHatchBrushElement;