image;

  1. arpanmukherjee1

    Panel Control in C#

    hello, i have a panel. i add label and a pictureBox using this : private void AddLabelAndImage(ref Point startPoint, string labelText, System.Drawing.Image image) { Label label = new Label(); panel1.Controls.Add(label); label.Text = labelText...
Top Bottom