0
我想讓datagridview停靠底部。但是當我按下鍵時,什麼都沒有發生。這裏是我的代碼:停靠datagridview底部
Private Sub MakbuzTDataGridView_KeyDown(sender As Object, e As KeyEventArgs)
If e.KeyCode = Keys.F9 Then
MakbuzTDataGridView.Dock = DockStyle.Bottom
Me.Validate()
Me.MakbuzTBindingSource.EndEdit()
End If
End Sub
我使用Visual Studio 2012
感謝您的回答。我試過了,但它強調了「KeyPress」這個詞。 http://img580.imageshack.us/img580/8250/3mpr.png – nikel
嘗試將您的KeyEventArgs更改爲KeyPressEventArgs – Brandon
然後您必須使用KeyChar內嵌KeyCode,請參閱我的編輯 – Brandon