DataGridViewCheckBoxCell.OnKeyUp(KeyEventArgs, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當焦點在儲存格上,放開字元鍵時呼叫。
protected:
override void OnKeyUp(System::Windows::Forms::KeyEventArgs ^ e, int rowIndex);
protected override void OnKeyUp (System.Windows.Forms.KeyEventArgs e, int rowIndex);
override this.OnKeyUp : System.Windows.Forms.KeyEventArgs * int -> unit
Protected Overrides Sub OnKeyUp (e As KeyEventArgs, rowIndex As Integer)
參數
KeyEventArgs,其中包含事件資料。
- rowIndex
- Int32
目前儲存格的資料列索引,如果儲存格不屬於資料列,則為 -1。
備註
當由 SPACEBAR 索引鍵啟用 (相當於 Keys.Space 值) 時,此方法會更新儲存格的使用者介面 (UI) ,並在擁有 DataGridView 上引發 OnCellClick 事件。
這個方法類似于 Control.OnKeyUp 方法。 它會在引發事件的相同情況下 Control.KeyUp 呼叫,但實際上不會引發事件。