0

我有一个表格,它是一个 MDI 容器。在该表单中,我生成 6 个子表单,每个子表单都有一个标签:

for (int i = 0; i < 6; i++)
{
    Form window = new Form();
    window.Width = 100;
    window.Height = 100;

    window.MdiParent = this;
    window.FormBorderStyle = FormBorderStyle.FixedToolWindow;

    Label label = new Label();
    label.AutoSize = true;
    label.Location = new System.Drawing.Point(1, 1);
    label.Size = new System.Drawing.Size(35, 13);
    label.TabIndex = 1;
    label.Name = "label" + i.ToString();
    label.Text = window.Top.ToString();

    window.LocationChanged += new System.EventHandler(HERE);

    window.Controls.Add(label);
    window.Show();              
}

我在 locationchanged for window 上添加了一个事件。现在怎么做才能使标签更新到窗口位置?

4

2 回答 2

1

我认为这条线会为你解决问题:

window.LocationChanged += new EventHandler(delegate(object o, EventArgs evtArgs) { 
    label.Text = window.Location.ToString(); 
});
于 2009-05-31T19:50:55.003 回答
0

好吧,使用 lambda 表达式或匿名方法最简单:

window.LocationChanged += (sender, args) => label.Text = window.Top.ToString();

如果您使用的是 C# 1.1,则需要有点棘手,因为在 C# 2+ 中会自动捕获标签 - 您必须像这样创建一个新类:

internal class LocationChangeNotifier
{
    private readonly Label label;

    internal LocationChangeNotifier(Label label)
    {
        this.label = label;
    }

    internal void HandleLocationUpdate(object sender, EventArgs e)
    {
        label.Text = ((Control) sender).Top.ToString();
    }
}

然后将其用作:

LocationChangeNotifier notifier = new LocationChangeNotifier(label);
window.LocationChanged += new EventHandler(notifier.HandleLocationUpdate);

捕获的变量不是很好吗?:)

于 2009-05-31T19:50:58.360 回答