Click Event Not Firing - Cannot Change Focus - Cannot Close Form

前端 未结 3 1692
难免孤独
难免孤独 2020-12-06 13:11

I have a Windows Forms Application. I have several forms in this application (a main form, and several specialized forms), and on only one form, click events are not firing

3条回答
  •  死守一世寂寞
    2020-12-06 13:58

    This will do the trick for you

    Change

    public ScheduleMeeting()
    {
        InitializeComponent();
    } 
    

    to

    public MyForm()
    {
        InitializeComponent();
    }
    

提交回复
热议问题