I am trying to send image on secondary display and this is a part of code which intends to set its coordinates to 0,0 position
- if (frP2 == false)
- {
- Screen disp = null;
- form2.StartPosition = FormStartPosition.Manual;
- disp = Screen.AllScreens[1];
- form2.Location = disp.Bounds.Location + new Point(0, 0);
- form2.Show();
- }
Visual Studio returns an error: "Operator '+' cannot be applied to operands od type 'Point'". What to use instead of "+" in this case?