バージョン

行の背景にグラデーションの適用

以下のコードでは特定の行の背景を 2 色からなるグラデーションを設定する方法を紹介しています。

Visual Basic の場合:

Imports Infragistics.Win.UltraWinGrid
Imports Infragistics.Win
...
Private Sub ApplyingaGradientBackgroundtoaRow_Load(ByVal sender As System.Object, _
  ByVal e As System.EventArgs) Handles MyBase.Load
	Dim objRow As UltraGridRow
	objRow = Me.UltraGrid1.Rows(10)
	Me.UltraGrid1.Rows(10).Appearance.BackColor2 = Color.Blue
	Me.UltraGrid1.Rows(10).Appearance.BackGradientStyle = GradientStyle.Circular
	Me.UltraGrid1.ActiveRow = objRow
End Sub

C# の場合:

using Infragistics.Win.UltraWinGrid;
using Infragistics.Win;
...
private void ApplyingaGradientBackgroundtoaRow_Load(object sender, System.EventArgs e)
{
	UltraGridRow objRow = this.ultraGrid1.Rows[10];
	this.ultraGrid1.ActiveRow = objRow;
	this.ultraGrid1.Rows[10].Appearance.BackColor2 = Color.Blue;
	this.ultraGrid1.Rows[10].Appearance.BackGradientStyle = GradientStyle.Circular;
}
WinGrid Apply a Gradient Background To a Row 01.png