双击在标签上不起作用

本文关键字:不起作用 标签 双击 | 更新日期: 2023-09-27 18:36:16

我正在尝试在double clicked label后打开form。我的代码:

else if (e.Clicks == 2)
{
    foreach (var control in myFLP.Controls)
    {
        if(control is Label)
        {
            var Id = mylabel.Name.ToString();
            int personID;
            if (!String.IsNullOrWhiteSpace(Id) && int.TryParse(Id, out personID))
            {
                Form frm = new Form(_controller, personID);
                frm.ShowDialog();
                frm.Dispose();
            }
            else 
            {
                Form2 frm2 = new Form2();
                frm2.ShowDialog();
                frm2.Dispose();
                Console.WriteLine("Hello");
            }
        }
    }
}

当我double click label时,什么也没发生?所以我尝试在不传递任何参数的情况下调用Form frm = new Form();。表格在double click后打开,但myFLP中的每个标签都不断打开?

编辑 1:我添加了一个ELSE.我认为我的状况不正确。

双击在标签上不起作用

您可能订阅了事件 Control.Click。您应该订阅事件控件。双击。

如果您使用的是Visual Studio 设计器,请选择要在双击时做出反应的标签;转到属性 (-enter),选择闪光灯以查看所有事件,然后在"操作"类别中查找"双击"。

在函数 InitializeComponent() 中(请参阅窗体的构造函数),您将看到类似于以下内容的内容:

this.label1.DoubleClick += new System.EventHandler(this.label1_DoubleClick);

事件处理功能:

private void label1_DoubleClick(object sender, EventArgs e)
{
    // sender is the label that received the double click:
    Debug.Assert(Object.ReferenceEquals(sender, this.label1));
    Label doubleClickedLabel = (Label)Sender;
    var Id = doubleClickedLabel.Text;
    int personID;
    if (!String.IsNullOrWhiteSpace(Id) && int.TryParse(Id, out personID))
    {   // open form. Note the use of the using statement
        using (Form frm = new Form(_controller, personID)
        {
            frm.ShowDialog();
        }
    }
    else 
    {
        using (Form2 frm2 = new Form2())
        {
            frm2.ShowDialog();
        }
    }
}

我认为您检查了错误的标签。和下面的一行

var Id = mylabel.Name.ToString();

应改为

var Id = control.Name.ToString();