🙂 İNSANLARIN EN HAYIRLISI INSANLARA FAYDALI OLANDIR 🙂

Burak HABER / C# / 64. Point Yapısı

1-) C# - 64. Point Yapısı

using System;

using System.Drawing;

using System.Windows.Forms;

 

namespace _64.Point_Yapisi

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }

 

        private void button1_Click(object sender, EventArgs e)

        {

            Point konum = new Point();

            konum.X = 300;

            konum.Y = 200;

            pictureBox1.Location = konum;

        }

    }

}

 2021 Mart 11 Perşembe
 459