It would make things much easier if I could get access to the inner panel of a scrollview in the designer. As it is, I have to do it all in code so the benefits of the designer can't be used with a layout using a scrollview.
In the Designer you could define a layout where you have a Panel, even heigher than the screen, put all the views onto this Panel and load the layout file into the internal scrollview panel with ScrollView1.Panel.LoadLayout("MyLayout").
To show the lower part of the panel in the Designer set a negative value to the panel's Top property.
Don't forget to set ScrollView1.Panel.Height = LayoutPanel.Height after having loaded the layout.
In the Designer you could define a layout where you have a Panel, even heigher than the screen, put all the views onto this Panel and load the layout file into the internal scrollview panel with ScrollView1.Panel.LoadLayout("MyLayout").
To show the lower part of the panel in the Designer set a negative value to the panel's Top property.
Don't forget to set ScrollView1.Panel.Height = LayoutPanel.Height after having loaded the layout.
I understand how to get around it, that was not the point of the wish. The point is WHY should I have to create another layout to use in a scrollview layout? Oh well.