gpt4 book ai didi

c# - 如何让 2 个 `Panel` 对象同时滚动?

转载 作者:太空宇宙 更新时间:2023-11-03 18:13:37 34 4
gpt4 key购买 nike

我在一个表单上有 2 个 Panel 对象并排放置。当我滚动第一个面板时,我希望另一个面板滚动完全相同的数量。

是这样的。

private void Panel1_Scroll(object sender, ScrollEventArgs e)
{
Panel2.ScrollPosition() = Panel1.ScrollPosition();
}

最佳答案

我同意 scottm,但添加了一些不同的东西:

private void ScorePanel_Scroll(object sender, ScrollEventArgs e)
{
var senderPanel = sender as Panel;

if (senderPanel == null)
{
// Might want to print to debug or mbox something, because this shouldn't happen.
return;
}

var otherPanel = senderPanel == Panel1 ? Panel2 : Panel1;

otherPanel.VerticalScroll.Value = senderPanel.VerticalScroll.Value;
}

换句话说,您总是将 Panel1 更新为 Panel2 的滚动偏移量,因此如果您滚动 Panel2,它实际上不会滚动任何内容。

现在您有了这个方法,您应该订阅两个面板,如下所示:

Panel1.Scroll += ScorePanel_Scroll;
Panel2.Scroll += ScorePanel_Scroll;

这可能最好在包含面板的表单的构造函数中完成。

关于c# - 如何让 2 个 `Panel` 对象同时滚动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10353041/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com