Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
启用滚动条的面板有许多按钮。如果我按下制表键,焦点会在按钮之间导航。
当部分可见的按钮获得焦点时,面板会自行滚动以完全显示该按钮。
有没有办法防止滚动?
您必须创建自己的 Panel 控件并覆盖该ScrollToControl方法:
ScrollToControl
Public Class PanelEx Inherits Panel Protected Overrides Function ScrollToControl(activeControl As Control) As Point Return Me.AutoScrollPosition End Function End Class