Event Problem
-
hallo zusammen,
hab hier eine PictureBox mit einem Click Event aufn Form.
namespace name1 { public partial class Form1 : Form { public PictureBox f1; public Form1() { f1 = new PictureBox(); this.f1.Click+=new EventHandler(this.f1_Click); this.Controls.Add(f1); InitializeComponent(); } private void f1_Click(object sender, EventArgs e) { MessageBox.Show("Yo"); } } }
-
auf jeden möchte ich das , das wenn ich zb. nur auf einen bestimmten Bereich der PictureBox klicke etwas passiert.
Aber e.X oder e.Y wird nicht erkannt.
-
Das MouseClick-Event hast das was du suchst.