Create multiple dynamic label in C# window form
Hello,
How tow create multiple dynamic label in Windows application c#.
i have been tried this but not working..
lblUsedShadeInImage.BorderStyle = BorderStyle.FixedSingle;
lblUsedShadeInImage.AutoSize = false;
lblUsedShadeInImage.BackColor = Color.Black;
pnlRecentshade.Controls.Add(lblUsedShadeInImage);
Please provide the solution for multiple dynamic label.
Thanks
Prashant