using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
for (int i = 1; i <= 100; i++)
{
this.Top += 10;
this.Left += 10;
this.Top -= 10;
this.Left -= 10;
}
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
(Enes Zorba)
Hiç yorum yok:
Yorum Gönder