'宣言 Public Property ExpansionIndicatorDisplayMode As ExpansionIndicatorDisplayMode
public ExpansionIndicatorDisplayMode ExpansionIndicatorDisplayMode {get; set;}
この設定を Record の Record.ExpansionIndicatorVisibility 取得アクセサーで使用し、展開インジケーターの解決済み可視性を決定します。しかし、Record で Record.ExpansionIndicatorVisibility プロパティを明示的に設定する方がこのプロパティより優先されます。
注: このプロパティは、展開インジケータがサポートされない特定のビューで無視されます。また、IsNestedDataDisplayEnabled プロパティが false に設定されている場合も無視されます。
public partial class Window1 : Window { public Window1() { InitializeComponent(); // Set the ExpansionIndicatorDisplayMode so that when a record // is displayed it will be checked to see if it has any child records. // The expansion indicator will only be displayed if the record has // children. this.XamDataGrid1.FieldLayoutSettings.ExpansionIndicatorDisplayMode = ExpansionIndicatorDisplayMode.CheckOnDisplay; } }
Imports Infragistics.Windows.DataPresenter Class Window1 Public Sub New() ' This call is required by the Windows Form Designer. InitializeComponent() ' Set the ExpansionIndicatorDisplayMode so the when a ' Record is displayed it wil be checked for any children ' an the expansions indicator will only be displayed ' if the record has children Me.XamDataGrid1.FieldLayoutSettings.ExpansionIndicatorDisplayMode = ExpansionIndicatorDisplayMode.CheckOnDisplay End Sub End Class