バージョン

ButtonStyle プロパティ (UltraGridOverride)

列のボタンおよびAddNewBoxのボタンのスタイルを取得または設定します。
シンタックス
'宣言
 
Public Property ButtonStyle As Infragistics.Win.UIElementButtonStyle
public Infragistics.Win.UIElementButtonStyle ButtonStyle {get; set;}
使用例
Private Sub SetupGrid()
   ' Give all of the buttons in the grid the 'WindowsXPCommandButton' visual style.
   '
   Me.ultraGrid1.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsXPCommandButton
End Sub 'SetupGrid
private void SetupGrid()
{
	// Give all of the buttons in the grid the 'WindowsXPCommandButton' visual style.
	//
	this.ultraGrid1.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsXPCommandButton;
}
参照