I'm currently working on a small project, using user controls to bring up different windows part of my windows. When a sidebar is clicked, one of the user controls is brought to the front by BringToFront(). This uses an instance of the User Control via code, to which the function is called.
SelectionPanel.Height = btnSideHome.Height;
this.Controls.Add(HomePage.Instance);
HomePage.Instance.BringToFront();
However, upon build, when HomePage.Instance.BringToFront()
is called after the window is initialised, in the public Form1()
class, the HomePage user control instantiates at the top left of the window, rather than at 200,61
, where it is placed in the form designer.
What is the issue here, and how can I remedy it?
Sometimes there is a Startlocation that is you can set to manual before the form is opened