C#动态面板SubPanel事件循环错误

问题描述

我目前正在使用Visual Studio 19中的流布局面板制作UI。 如果我按下按钮,它将使用

克隆面板
public static T Clone<T>(this T controlToClone) where T : Control
    {
        PropertyInfo[] controlProperties = typeof(T).GetProperties(BindingFlags.Public | BindingFlags.Instance);

        T instance = Activator.CreateInstance<T>();
        foreach (PropertyInfo propInfo in controlProperties)
        {
            if (propInfo.CanWrite)
            {
                if (propInfo.Name != "WindowTarget")
                    propInfo.SetValue(instance,propInfo.GetValue(controlToClone,null),null);
            }
        }

        return instance;
    }

在同一新闻事件中,它会触发AddNewPanel(“ name”);

private void AddPanel(string name)
        {
            var label = new Label();
            label.AutoSize = false;
            label.TextAlign = ContentAlignment.MiddleCenter;
            label.Dock = DockStyle.Fill;
            label.Text = name;
            label.MouseEnter += labelEnter;
            label.MouseLeave += labelLeave;

            var panel = panel1.Clone();
            var button = button1.Clone();
            button.Name = "button" + new Random().Next(1,100);

            panel.Controls.Add(button);
            panel.Controls.Add(label);

            flowLayoutPanel1.Controls.Add(panel);
        }

事件标签Enter触发ShowButtons()

private void showButtons()
        {
            foreach (Control item in flowLayoutPanel1.Controls)
            {
                var button = item.Controls[1];
                button.Visible = true;
            }
        }

和mouseLeave事件的作用相同,除了将Visible设置为false。

现在,我已经经历了将控件动态添加到面板中,然后又将其添加到流程图面板中的过程,这会引起一些问题。例如,将鼠标移到按钮上时,labelMouseEnter / Leave事件会循环。任何人以前曾经历过这个或类似的帖子吗?当按钮最初为“可见”时不会发生,这意味着在设计器View中将“可见”设置为true。它将使用visible属性对其进行克隆。

解决方法

解决方案是在MouseLeave事件中添加一个检查,如下所示:

 private void control_MouseLeave(object sender,EventArgs e)
        {
            var control = sender as Control;
            if (control.ClientRectangle.Contains(control.PointToClient(Cursor.Position))) return;
            //rest 
            ShowButtons();
        }

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...