[Solved] Simple order form C# buttons not changing labels

To elaborate on my above answer in the comments, ensure the button’s click event has a handler attached to it. Such as: public Form1() { InitializeComponent(); Button1.Click += Button1_click; } You can also set this via the designer by double clicking the control to automatically create the event handler in your code and then modify … Read more