c# - I am using a MDI application. I want to set the start position of a formShow -
in application when create new form pops on old one, set start position next form displaying.
how can set form start position.
this iv got @ moment:
this.startposition = system.windows.forms.formstartposition.centerscreen;
but want along lines of:
this.startposition = system.windows.forms.formstartposition.left(350);
before opening form set
this.startposition = system.windows.forms.formstartposition.manual; this.location = new system.drawing.point(20, 20); // or set desidered location
Comments
Post a Comment