I am trying to open winform on secondary screen with code below
ff.FormBorderStyle = FormBorderStyle.None;
ff.Left = sc[1].Bounds.Left; value 1366
ff.Top = sc[1].Bounds.Top;
ff.Height = sc[1].Bounds.Height;
ff.Width = sc[1].Bounds.Width;
Console.WriteLine(ff.Left); // output 1366
ff.Show();
Console.WriteLine(ff.Left); // output 50
Why value got changed on show and because of that form open in primary screen. Even in Visual studio property window when i try to change x,y parameter of location, values updated to old values once i leave property cell. What can be the issue.