'宣言 Public Class CardViewSettings Inherits Infragistics.Windows.Controls.ViewSettingsBase
public class CardViewSettings : Infragistics.Windows.Controls.ViewSettingsBase
CardViewSettings オブジェクトのプロパティを操作することで、CardViewPanel がどのように項目を整理するかを制御できます。
CardViewSettings オブジェクトによって公開されるプロパティは以下のとおりです。
Imports Infragistics.Windows.DataPresenter 'xamDataCards Me.xamDataCards1.ViewSettings.ShouldCollapseEmptyCells = True 'xamDataPresenter Dim cardView1 As CardView = TryCast(Me.xamDataPresenter1.View, CardView) If cardView1 IsNot Nothing Then cardView1.ShouldCollapseEmptyCells = True End If
using Infragistics.Windows.DataPresenter; //xamDataCards this.xamDataCards1.ViewSettings.ShouldCollapseEmptyCells = true; //xamDataPresenter CardView cardView1 = this.xamDataPresenter1.View as CardView; if(cardView1 != null) { cardView1.ShouldCollapseEmptyCells = true; }