Is there any way to get the +
operator to work for the Point object?
Take, for example, this tiny snippet:
this.cm1.Show((MouseEventArgs)e.Location+this.i_rendered.Location);
You see, I try to add two points to eachother. It just does not work (which was expected). I'd love to get this working.
Any ideas?