IDataGridViewEditingControl.EditingControlValueChanged 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出編輯控制項的值是否與裝載儲存格的值不同。
public:
property bool EditingControlValueChanged { bool get(); void set(bool value); };
public bool EditingControlValueChanged { get; set; }
member this.EditingControlValueChanged : bool with get, set
Public Property EditingControlValueChanged As Boolean
屬性值
如果控制項的值與儲存格的值不同,則為 true
,否則為 false
。
備註
屬性 EditingControlValueChanged 設定為 true
,表示主控資料格的狀態已變更,且其使用者介面 (UI) 必須更新,才能反映值中的這項變更。 擁有的資料格或資料表會在更新之後將此屬性重設為 false
。
給實施者的注意事項
在此屬性的實作中傳 true
回並不會自動變更顯示的值。 當編輯控制項中的值變更時,您必須傳遞 true
至 NotifyCurrentCellDirty(Boolean) 方法,以通知 DataGridView 變更。