How to add a form load event (currently not working)

后端 未结 2 1550
深忆病人
深忆病人 2020-12-01 23:39

I have a Windows Forms form where I am trying to show a user control when the form loads. Unfortunately, it is not showing anything. What am I doing wrong? Please see the c

相关标签:
2条回答
  • 2020-12-01 23:58

    You got half of the answer! Now that you created the event handler, you need to hook it to the form so that it actually gets called when the form is loading. You can achieve that by doing the following:

     public class ProgramViwer : Form{
      public ProgramViwer()
      {
           InitializeComponent();
           Load += new EventHandler(ProgramViwer_Load);
      }
      private void ProgramViwer_Load(object sender, System.EventArgs e)
      {
           formPanel.Controls.Clear();
           formPanel.Controls.Add(wel);
      }
    }
    
    0 讨论(0)
  • 2020-12-02 00:16

    Three ways you can do this - from the form designer, select the form, and where you normally see the list of properties, just above it there should be a little lightning symbol - this shows you all the events of the form. Find the form load event in the list, and you should be able to pick ProgramViwer_Load from the dropdown.

    A second way to do it is programmatically - somewhere (constructor maybe) you'd need to add it, something like: ProgramViwer.Load += new EventHandler(ProgramViwer_Load);

    A third way using the designer (probably the quickest) - when you create a new form, double click on the middle of it on it in design mode. It'll create a Form load event for you, hook it in, and take you to the event handler code. Then you can just add your two lines and you're good to go!

    0 讨论(0)
提交回复
热议问题