✅ Button doesn't trigger function for it

PPillow12/22/2022
According to https://learn.microsoft.com/en-us/visualstudio/ide/create-csharp-winform-visual-studio?view=vs-2022 I think this should work, but it doesn't. Here's the code:
private void btnClick1_Click(object sender, EventArgs e)
        {
            MessageBox.Show("Hello, world.");
        }

and the properties for the button (default except for the name and text which are changed)
(btw, nothing happens when I click it if that wasn't clear)
Image
Pphaseshift12/22/2022
Did you write all of the event handler yourself, v or did you double click in the event menu and it was generated for you?
Pphaseshift12/22/2022
Click on the lightning bolt from your image and show any existing handlers
PPillow12/22/2022
aaaah
i assume i do this (it was blank before)
Image
PPillow12/22/2022
works now, tysm
Pphaseshift12/22/2022
👍🏻
Please close with /close