Posts by Luiz Henrique • 13 points
1 post
-
1
votes1
answer25
viewsQ: Create click event for multiple C#buttons
I make a class to generate buttons like this: public Button GerarBotao(string Text, string Name) { Button button = new Button(); button.Text = Text; button.Name = Name; button.Dock = DockStyle.Top;…