バージョン

WinGrid のキャプションの非表示

UltraGridLayoutCaptionVisible プロパティを True に設定することで、WinGrid のキャプションを表示できます。また、WinGrid の Text プロパティを値に設定することで、グリッドのキャプションを表示することもできます。

Visual Basic の場合:

Imports Infragistics.Win
...
Private Sub Show_WinGrids_Caption_Load(ByVal sender As System.Object, _
  ByVal e As System.EventArgs) Handles MyBase.Load
	Me.UltraGrid1.DisplayLayout.CaptionVisible = DefaultableBoolean.True
	Me.UltraGrid1.Text = "Customer Information"
End Sub

C# の場合:

using Infragistics.Win;
...
private void Show_WinGrids_Caption_Load(object sender, EventArgs e)
{
	this.ultraGrid1.DisplayLayout.CaptionVisible = DefaultableBoolean.True;
	this.ultraGrid1.Text = "Customer Information";
}

以下のスナップショットは、キャプションを表示して Text プロパティを "Customer Information" に設定した WinGrid を示しています。

WinGrid Show WinGrids Caption 01.png