The Shell (_layoutWorkspace)

You can adjust the Shell window initial size by adding a width and height value using the lines shown below after the initialize statement to the file ~\Source\Infrastructure\Shell\ShellForm.cs

public ShellForm() {
InitializeComponent();
//Set default size to meet default your opening page size
this.Width = 950;
this.Height = 600;
_layoutWorkspace.Name = WorkspaceNames.LayoutWorkspace; }

Comments