4

我正在开发 WinForms 中的触摸屏 POS。

我有一个 flowlayoutpanel 并动态添加按钮,但我不想显示滚动条。

我使用 2 个按钮来滚动,所以请帮助我如何在不显示滚动条的情况下滚动

4

2 回答 2

8

尝试将 FlowLayoutPanel 放置在具有以下属性的另一个面板中:

flowLayoutPanel1.AutoScroll = false;
flowLayoutPanel1.AutoSize = true;
flowLayoutPanel1.AutoSizeMode = AutoSizeMode.GrowAndShrink;

AutoScroll = false;从这里开始,您必须根据您的两个按钮控制面板内 FlowLayoutPanel1 的位置(也应该有)。

于 2012-06-11T13:26:56.273 回答
1

取两个按钮 btnLeft 和 btnRight 并尝试以下代码:

private void btnLeft_Click(object sender, EventArgs e)
{
    if (flowPanelItemCategory.Location.X <= xpos)
    {
        xmin = flowPanelItemCategory.HorizontalScroll.Minimum;
        if (flowPanelItemCategory.Location.X >= xmin)
        {
            xpos -= 100;
            flowPanelItemCategory.Location = new Point(xpos, 0);
        }
    }
}

private void btnRight_Click(object sender, EventArgs e)
{
    if (flowPanelItemCategory.Location.X <= xpos)
    {
        xmax = flowPanelItemCategory.HorizontalScroll.Maximum;
        if (flowPanelItemCategory.Location.X < xmax)
        {
            xpos += 100;
            flowPanelItemCategory.Location = new Point(xpos, 0);
        }
    }
}
于 2012-06-25T06:09:29.847 回答