1

我有一个 C# .NET 3.0 项目,它使用一个包含多行控件的 TableLayoutPanel。如果我向下滚动以使顶部项目不再可见,然后删除一列中的控件并将其替换为新控件,则 TableLayoutPanel 将滚动回顶部。

/// the panel in question
private System.Windows.Forms.TableLayoutPanel impl_;

/// The user has clicked a linklabel in the panel. replace it with an edit-box
private void OnClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
    LinkLabel link_label = sender as LinkLabel;
    TextBox new_edit = new TextBox();
    // setup the new textbox...

    TableLayoutPanelCellPosition pos = impl_.GetCellPosition(link_label);
    impl_.Controls.Remove(link_label);
    impl_.Controls.Add(new_edit, pos.Column, pos.Row);
    new_edit.Focus();
}

我需要做些什么来防止滚动位置发生变化?

4

2 回答 2

2

您正在删除具有焦点的控件。它会尝试找到另一个焦点,如有必要,将其滚动到视图中。除了为另一个控件提供焦点之外,可能有用的一件事是添加 TextBox 并在删除标签之前为其提供焦点。

于 2010-08-24T22:50:47.637 回答
0

Hans Passant 的解决方案最适合上下文。但在其他无法使用焦点的情况下,您可以使用AutoScollPosition滚动回上一个位置:

Point scrollPosition = tlp.AutoScrollPosition;

//make changes here

tlp.AutoScrollPosition = new Point(-scrollPosition.X, -scrollPosition.Y) //according to the documentation negative coordinates are returned but positive ones need to be assigned
于 2016-04-06T07:54:33.543 回答