バージョン

FieldLayoutSettings クラス

DataPresenterBase 派生コントロールで使用され、1 つまたは複数の FieldLayout に適用するよう設定を指定します。
シンタックス
'宣言
 
Public Class FieldLayoutSettings 
   Inherits Infragistics.DependencyObjectNotifier
public class FieldLayoutSettings : Infragistics.DependencyObjectNotifier 
解説

この設定オブジェクトは、以下の 2 つのプロパティから公開されます。

フィールドの説明については、開発者ガイドの「フィールド」を参照してください。

FieldLayout オブジェクトの説明については、開発者ガイドの「フィールド レイアウト」を参照してください。

どのようにこのオブジェクトが使用されるかの説明については、開発者ガイドの「操作の理論」を参照してください。

使用例
The following example demonstrates how to initialize settings for the FieldLayoutSettings of the DataPresenterBase.This provides default values for the settings of all field layouts within the control. This can then be overriden for specified FieldLayout instances using its Settings property.
<igDP:XamDataGrid DataSource="{Binding Source={StaticResource EmployeesDataSource}}">
    
<igDP:XamDataGrid.FieldLayoutSettings>
        
<igDP:FieldLayoutSettings AllowAddNew="True" AddNewRecordLocation="OnTopFixed" />
    
</igDP:XamDataGrid.FieldLayoutSettings>
</igDP:XamDataGrid>
参照