Hi, I have a flowLayoutPanel, into which I want to add new labels when the user clicks on a button. Is this possible? C#, Winforms, Visual Studio
I am trying something like this:
//inside click event handler
string submitWord = tempWord;
Label lbl = new Label();
lbl.Text = submitword;
flowLayoutPanel.Controls.Add(lbl);
Thanks