Mouse를 이용한 컨트롤 생성 시 마우스 위치에 따라 컨트롤 사이즈, 위치 관련 예제입니다. Point position; PictureBox pic; private void Form1_MouseDown(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) { position = e.Location; } } private void Form1_MouseUp(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) { i..