作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在一个面板
中有很多radiobutton
,自动滚动设置为true
。 radiobutton
之一被选中。我想确保选中的那个应该是可见的,即应该移动垂直的 scrollbar
以便选中的 radiobutton
可见。
有什么办法吗?
附言我试过如下但它不工作
RadioButton radiobutton = new RadioButton();
.....
panel.Controls.Add(radioButton);
if (some logic)
{
radioButton.Checked = true;
panel.ScrollControlIntoView(radioButton);
}
最佳答案
为了解决这个问题,我在显示表单后添加了上面提到的代码 (panel.ScrollControlIntoView(radioButton)
)(即在 form_Shown
事件的事件处理程序中) .
现在可以使用了。但我对此仍然没有正确的解释。
关于c# - 如何在 Windows 窗体面板中设置滚动条的位置 (C#),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1138087/
我是一名优秀的程序员,十分优秀!