バージョン

AllowAddNew プロパティ

ユーザーがレコードを追加できるかどかを取得または設定します。
シンタックス
'宣言
 
Public Property AllowAddNew As Nullable(Of Boolean)
public Nullable<bool> AllowAddNew {get; set;}
解説
使用される最終的なデフォルト値は False です。ただし、DataSource でレコードの追加がサポートされていない場合、このプロパティは無視されます。たとえば、System.ComponentModel.IBindingList インターフェイスを実装しないか、そのインターフェイスの System.ComponentModel.IBindingList.AllowNew プロパティが False を返すか、System.ComponentModel.IEditableCollectionView インターフェイスを実装しないか、そのインターフェイスの System.ComponentModel.IEditableCollectionView.CanAddNew プロパティが False を返すか、抽象的な型以外で、公開用のパラメーターなしのコンストラクターがあるジェネリック リストではない場合など。
使用例
The following example demonstrates enabling a fixed add new record. The AllowAddNew determines whether the user may add records and must be true in order to display the add new record. The AddNewRecordLocation is then used to initialize the placement of the record. In this case, we are setting it to OnTopFixed so that it is always in view.
<igDP:XamDataGrid DataSource="{Binding Source={StaticResource EmployeesDataSource}}">
    
<igDP:XamDataGrid.FieldLayoutSettings>
        
<igDP:FieldLayoutSettings AllowAddNew="True" AddNewRecordLocation="OnTopFixed" />
    
</igDP:XamDataGrid.FieldLayoutSettings>
</igDP:XamDataGrid>
参照