我尝试添加上一个线程中的代码,但它对我不起作用。
我只是想删除它,因为无论它是否需要出现在我的屏幕上,它都会显示出来。
面板不会显示条形,除非它通过Panel.AutoScroll = false
和静态设置panel1.HorizontalScroll.Visible = true
。我建议您验证没有控件超出面板,而不是强制状态。
将以下内容插入表单的某些部分。这将验证您没有超出面板两侧的控件。将 panel1 更改为有问题的面板的名称。
foreach (Control comp in panel1.Controls)
{
if (comp.Right >= panel1.Width || comp.Bottom >= panel1.Height)
{
System.Diagnostics.Debugger.Break();
}
}
如果你仍然找不到问题,Panel.AutoScroll = false
应该panel1.HorizontalScroll.Visible = false
做的工作。
我发现这个解决方案是首选。
public class MongoDataPanel : Panel
{
[DllImport("user32.dll")]
static public extern bool ShowScrollBar(IntPtr hWnd, int wBar, bool bShow);
private const int SB_HORZ = 0;
private const int SB_VERT = 1;
protected override void OnResize(EventArgs eventargs)
{
base.OnResize(eventargs);
if (this.Parent != null)
{
if (this.Parent.Width > this.PreferredSize.Width - 10)
{
try
{
ShowScrollBar(this.Handle, SB_HORZ, false);
}
catch (Exception e) { }
}
}
}
}