我想我想在鼠标光标位置显示 FlowLayoutPanel。但是在下面的代码中,它只会在我的表单中心跳动。我在 DataGridView.CellMouseEnter 事件上触发它。求一些建议,谢谢。
Private Sub dgw_CellMouseEnter(sender As Object, e As DataGridViewCellEventArgs) Handles dgw.CellMouseEnter
FlowLayoutPane1.Location = Cursor.Position
FlowLayoutPane1.Visible = True
End Sub