[Solved] Visual Studio C# and Bunifu UI, can’t find on click method
I hesitate to answer because the question is poorly worded and I’m not certain this is what you’re looking for, but here’s how to hook up a Click event to a control created in code: var button = new Bunifu.Framework.UI.BunifuFlatButton(); button.Click += Button_Click; In Visual studio, after you type the +=, pressing Tab will create … Read more