Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 1.2 KB

how-to-split-a-window-horizontally-using-the-designer.md

File metadata and controls

25 lines (19 loc) · 1.2 KB
title description ms.date helpviewer_keywords ms.assetid
How to: Split a Window Horizontally Using the Designer
Learn how to split a window horizontally in Windows Forms by using the designer by following this 1-step procedure.
03/30/2017
SplitContainer control [Windows Forms], horizontal splitting
split windows [Windows Forms], horizontal
windows [Windows Forms], splitting horizontally
3872a176-891f-4c70-9779-b2ce85b0b102

How to: Split a Window Horizontally Using the Designer

This example makes the splitter that divides the xref:System.Windows.Forms.SplitContainer control horizontal.

Note

The xref:System.Windows.Forms.SplitContainer.Orientation%2A property of the xref:System.Windows.Forms.SplitContainer control determines the direction of the splitter, not of the control itself.

To split a window horizontally

In the Properties window, set the xref:System.Windows.Forms.SplitContainer.Orientation%2A property of the xref:System.Windows.Forms.SplitContainer control to xref:System.Windows.Forms.Orientation.Horizontal.

See also