共用方式為


DataGrid.IsReadOnly 屬性

定義

取得或設定值,此值表示使用者是否可以編輯 DataGrid 中的值。

public:
 property bool IsReadOnly { bool get(); void set(bool value); };
public bool IsReadOnly { get; set; }
member this.IsReadOnly : bool with get, set
Public Property IsReadOnly As Boolean

屬性值

Boolean

如果資料列和儲存格是唯讀的,則為 true,否則為 false。 已註冊的預設值是 false。 如需哪些因素會影響值的詳細資訊,請參閱 DependencyProperty

備註

IsReadOnly 屬性設定為 true ,讓唯讀中的所有儲存格。 DataGrid 若要讓個別資料行或儲存格變成隻讀,請設定 DataGridColumn.IsReadOnlyDataGridCell.IsReadOnly 屬性。 如果 、資料行或資料格層級的 DataGrid 設定之間存在衝突,則 的值 true 會優先于 的值 false

如果在控制項處於編輯模式時,此屬性設定 true 為 ,則會捨棄所有擱置的編輯。

適用於