Object reference not set to an instance of an object.
this.ImageMap.MouseDown += new MouseButtonEventHandler(this.ImageMap_MouseDown);
can anyone help me?
this.ImageMap.MouseDown += new MouseButtonEventHandler(this.ImageMap_MouseDown);
can anyone help me?
Konstantin is correct. This error (NullReferenceException) occurs when you attempt to access a member (properties, events, methods, etc) on an variable that does not have a value (instance) associated with it (ie the value is null).