如何在 C# Windows 应用程序中将滚动焦点设置到指定控件?
我有带有控件和滚动的面板。默认情况下,我将焦点设置为面板。(默认情况下我需要焦点到面板) 如果我将面板滚动到某个位置,最小化表单并最大化它,它将位置设置为表单顶部。 如果我选择任何一个控件并执行相同的操作,它将聚焦于相同的控件。
我认为这里的控制焦点导致了问题。 如何根据滚动设置控制焦点?或者 如何在最小化和最大化表单时显示相同的滚动位置?
I have panel with the controls and scrolling .By default i set the focus to panel.(i need focus to panel by default)
if i scroll the panel to some where ,minimized the form and maximize it,it is setting the position to top of the form.
if i select the any of the control and do the same,it is focusing same control.
i think here the control focus is causing the problem.
how to set the control focus according to the scroll? or
How to show the same scroll position when minimize and maximize the form?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Panel.ScrollControlIntoView 是您要找的吗?
Is Panel.ScrollControlIntoView what you are looking for?
听起来您想关闭自动滚动。
创建一个新面板:
It sounds like you want AutoScrolling off.
Create a new panel:
我就这样爱过。
I sloved like this.