2

我有一个文本框,当在列表框上单击数据时,它会提供创建者/更新者的信息以及数据库中数据的创建/更新日期。文本框位于表单的右侧底部。

当用户通过拖动表单来修改大小时,它会更改信息文本框的位置

是否可以使用 SizeChanged 事件移动文本框以及如何移动?(通过传递 textchanged)

我试过了,但我做不到。我将 TextChanged 分配给 SizeChanged 事件。有用!

但是必须有一种方法可以在不使用 TextChanged 事件的情况下做到这一点。

这是我的代码,它有效,但它让我不满意。

private void infoTxt_TextChanged  (object sender, EventArgs e)
{
    infoTxt.Top = (this.Height - this.Top)  + infoTxt.Height* 3/4 ;
    infoTxt.Left = this.Width - (infoTxt.Width) ;
}
4

2 回答 2

4

将文本框锚定到表单的底部和右侧,如下所示:

// Anchor the text box to the bottom right corner of the form
infoTxt.Anchor = (AnchorStyles.Bottom | AnchorStyles.Right);
于 2013-10-09T19:36:12.573 回答
0

最好的方法是使用停靠文本框

于 2013-10-09T19:34:13.750 回答