Move a control with mouse on form
This is a simple script which demonstates how to move a control (here I used button) by dragging it (without using builtin drag-drop features ;))
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
private int [...]












