イベントとプロパティを継承する必要があります。たとえば、フォーム内で画像を移動する必要があります。1 つの画像を移動するこのコードがありますが、同じ動作で複数の画像を作成する必要があります。
private void pictureBox_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
x = e.X;
y = e.Y;
}
}
private void pictureBox_MouseMove(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
pictureBox.Left += (e.X -x);
pictureBox.Top += (e.Y - y);
}
}