我在分割器分隔的面板上有一些UserControl。 包含面板设置为AutoScroll。
由于Splitter控件在调整其“分割”控件的大小时会考虑其父级的大小,因此其内部的UserControl的大小调整受到面板大小的限制。
我希望能够在用户释放鼠标时将分割器向下移动到鼠标所在的位置(甚至超出容器/窗体的范围),并使容器面板相应地调整大小(并在必要时显示滚动条)
我已经尝试了各种组合,用不同的面板包装它,玩MinSize等。 这是我到目前为止所提出的最好的,但这不是我想要的:
有没有人有任何想法?
答案 0 :(得分:2)
您可以在按下鼠标按钮时设置mouse hook,并在释放鼠标按钮时将其取下。在钩子回调中,您可以观察鼠标位置并根据需要调整控件的大小。
编辑:
您可以改为使用特殊控件,用户可以拖动该控件以保持父容器右下角的滚动位置。用户可以拖动控件以使区域更大,如果您不使用锚点或停靠设置,您可以手动调整控件的大小以填充父区域。
我曾经为我所做的一个项目实施了类似的东西。我把它做成三角形,看起来像ToolStrip
上的“抓地力”。这是来自ScrollHolder
控件的一些代码片段:
public ScrollHolder()
{
this.Size = new Size(21, 21);
this.BackColor = SystemColors.Control;
}
protected override void OnPaint(PaintEventArgs e)
{
Point bottomLeft = new Point(0, this.Height);
Point topRight = new Point(this.Width, 0);
Pen controlDark = SystemPens.ControlDark;
Pen controlLightLight = SystemPens.ControlLightLight;
Pen controlDark2Px = new Pen(SystemColors.ControlDark, 2);
Point bottomRight = new Point(this.Width, this.Height);
e.Graphics.DrawLine(
controlLightLight,
bottomLeft.X,
bottomLeft.Y - 2,
bottomRight.X,
bottomRight.Y - 2);
e.Graphics.DrawLine(controlDark, bottomLeft, topRight);
e.Graphics.DrawLine(
controlLightLight,
bottomLeft.X + 1,
bottomLeft.Y,
topRight.X,
topRight.Y + 1);
e.Graphics.DrawLine(controlDark2Px, bottomLeft, bottomRight);
e.Graphics.DrawLine(controlDark2Px, bottomRight, topRight);
int xNumberOfGripDots = this.Width / 4;
for (int x = 1; x < xNumberOfGripDots; x++)
{
for (int y = 1; y < 5 - x; y++)
{
DrawGripDot(e.Graphics, new Point(
this.Width - (y * 4), this.Height - (x * 4) - 1));
}
}
}
private static void DrawGripDot(Graphics g, Point location)
{
g.FillRectangle(
SystemBrushes.ControlLightLight, location.X + 1, location.Y + 1, 2, 2);
g.FillRectangle(SystemBrushes.ControlDark, location.X, location.Y, 2, 2);
}
protected override void OnResize(EventArgs e)
{
this.SetRegion();
base.OnResize(e);
}
private void SetRegion()
{
GraphicsPath path = new GraphicsPath();
path.AddPolygon(new Point[]
{
new Point(this.Width, 0),
new Point(this.Width, this.Height),
new Point(0, this.Height)
});
this.Region = new Region(path);
}
就实际行为实施而言,您可能希望:
Thread.Sleep
来减慢速度。答案 1 :(得分:2)
您需要将MinExtra
的{{1}}属性设置为较大的负数。虽然房产本身不允许这样做,但你可以通过反思来改变这个领域:
Splitter