I have a non-modal child form which opens up from a parent form. I need to center the child form to its parent form. I have set property of child form to CenterParent<
CenterParent<
Form2 f = new Form2(); f.StartPosition = FormStartPosition.CenterParent; f.Show(this);