How to set label location on a form in C#

1 Answer

0 votes
namespace WinFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            label1.Location = new Point(250, 110);
        }
    }
}




/*
 * run:
 *
 *
 * 
 */

 



answered Aug 26, 2023 by avibootz

Related questions

1 answer 145 views
1 answer 154 views
1 answer 153 views
1 answer 279 views
1 answer 156 views
1 answer 133 views
133 views asked Aug 22, 2023 by avibootz
1 answer 121 views
121 views asked Aug 21, 2023 by avibootz
...