在询问之后:Prevent AutoScroll when contained Control gets focus我找到了一种没有AutoScroll的滚动条的方法(使用可以访问VScroll
属性的派生类)。但是 - 它不是实时的。即,只有当用户完成滚动时,控件实际上才会滚动。 (而不是具有AutoScroll = true
的Panel。)那么如何让它实时滚动?
我的代码:
using System.Drawing;
using System.Windows.Forms;
namespace test
{
public partial class Form1 : Form
{
MyPanel panel = new MyPanel
{
//AutoScroll = true,
Size = new Size(200, 200),
Location = new Point(0, 30),
BackColor = Color.Green
};
Button b1 = new Button
{
Location = new Point(100, 100),
Size = new Size(50, 150),
BackColor = Color.Black
};
Button b2 = new Button();
public Form1()
{
InitializeComponent();
panel.Controls.Add(b1);
Controls.Add(panel);
Controls.Add(b2);
Shown += new System.EventHandler(Form1_Shown);
}
void Form1_Shown(object sender, System.EventArgs e)
{
panel.VerticalScroll.Visible = true;
panel.SetV();
}
}
class MyPanel : Panel
{
public void SetV() { VScroll = true; }
}
}
答案 0 :(得分:0)
如同评论:
您需要覆盖面板的OnScroll()方法并调用 SetDisplayRectLocation(0,-se.NewValue)。
这就是这个问题的答案。
但是,我发现我不能同时拥有两个滚动条。或者至少 - 我还没有办法做到这一点。