Possible Duplicate:
How to make the + operator work while adding two Points to each other?
my code
position.Location = (e.Location + pic1.Location) - bild_posi.Location;
error smth like:
the operator "+" isnt compatible with "System.Drawing.Point + System.Drawing.Point"
how can i fix this?
It Depends on how you want to add points together
You could write a method called AddPoints and one called SubtractPoints such as
and then use it like