バージョン

AllowResize プロパティ (FieldSettings)

ユーザーが Field のセルまたはラベルのサイズを変更できるかどうかを決定します。
シンタックス
'宣言
 
Public Property AllowResize As Nullable(Of Boolean)
public Nullable<bool> AllowResize {get; set;}
解説

GridViewSettings.Orientation が Horizontal に設定されている XamDataGrid では、このプロパティは行のサイズ調整を決定します。そうでなければ、列のリサイズを制御します。

使用例
The following sample demonstrates disabling resizing of the columns using the AllowResize property and defaulting the CellWidth.
<igDP:XamDataGrid BindToSampleData="True">
    
<igDP:XamDataGrid.FieldSettings>
        
<igDP:FieldSettings
                
AllowResize="False" 
                
CellWidth="200" />
    
</igDP:XamDataGrid.FieldSettings>
</igDP:XamDataGrid>
参照