Hallo,
wie kann ich mit Hilfe eines Button ein Bild aus einer picturebox
so kopieren, dass man das Bild anschließend zum Beispiel bei Paint
einfügen kann? Hier mal mein bisheriger Code, allerdings tut sich da nichts
private void kopierenToolStripMenuItem1_Click(object sender, EventArgs e)
{
pictureBox1.DoDragDrop(pictureBox1.ImageLocation, DragDropEffects.Copy);
}
Gruß Volker