winform中的面板行为错误
本文关键字:错误 winform | 更新日期: 2023-09-27 18:20:22
我在Winforms中有一个面板,它在方法调用期间加载其中的面板。在方法调用中,我编写了以下代码:
//to get number of panel present in main panel so that new panel position can be set
int counT = panel1.Controls.Count;
Panel p = new Panel();
p.Location = new Point(3, 3 + (counT * 197));
p.Size = new Size(280, 150);
//To add panel to parent panel
panel1.Controls.Add(p);
每次我调用该方法时,它都会在主面板中加载一个面板。如果我不滚动滚动条,一切都很好。一旦我向下滚动滚动条,然后调用该方法,面板之间的距离就会增加。
根据写入的逻辑,两个面板之间的距离沿着Y轴应该是197像素,但它正在增加更多。
我已设置AutoScroll=true
任何帮助!!!
这是一个非常奇怪的行为,直到现在我才知道(我在WF方面有很多经验)。当执行上面的代码时,可以看到父面板何时滚动。我原以为孩子控制的位置是相对于ClientRectangle
的,但事实证明他们在计算DisplayRectangle
。
很快,而不是这个
p.Location = new Point(3, 3 + (counT * 197));
使用这个
var parentRect = panel1.DisplayRectangle;
p.Location = new Point(parentRect.X + 3, parentRect.Y + 3 + (counT * 197));
Panel.AutoScrollPosition
影响所有子控件的Location
属性。滚动就是这样工作的。因此,您应该记住,例如,您可以存储当前滚动位置,将位置移动到(0,0),添加新控件,并在所有之后恢复滚动位置
//to get number of panel present in main panel so that new panel position can be set
int counT = panel1.Controls.Count;
var pos = this.panel1.AutoScrollPosition; // Whe are storing scroll position
this.panel1.AutoScrollPosition = new Point(Size.Empty);
Panel p = new Panel();
p.Location = new Point(3, 3 + (counT * 197));
p.Size = new Size(280, 150);
p.BorderStyle = BorderStyle.FixedSingle;
//To add panel to parent panel
panel1.Controls.Add(p);
this.panel1.AutoScrollPosition = new Point(Math.Abs(pos.X), Math.Abs(pos.Y)); // We are restoring scroll position