Arranging objects

Layout panels are elements that control the positioning, size, dimensions, and arrangement of the elements that they contain. Layout panels act much like containers and help you arrange and group the objects your application. This section includes topics about designing the layout of your Microsoft Expression Blend application.

For information about the layout system in Windows Presentation Foundation (WPF) applications, see The Layout System Cc295017.xtlink_newWindow(en-us,Expression.40).png on MSDN.

Layout panels

Expression Blend makes it easy to do both simple and complex page layout by using various built-in layout panels or your own custom panels. Layout panels are elements that control the positioning, size, dimensions, and arrangement of other elements that they contain. Layout panels essentially act as containers. One beneficial use of layout panels is that you can organize elements inside them.

Note

Only the Grid, Canvas, StackPanel, ScrollViewer, and Border layout panels are available in Microsoft Silverlight projects.

Layout panels are adaptive in the sense that they can be implemented implicitly. This means that the overall layout automatically resizes, or auto-sizes, according to the window size. This benefits you in several scenarios, such as when you build a user interface (UI) that allows for varying screen sizes and resolutions, and also addresses localization needs. You can also decide to use fixed sizes by implementing the layout panels explicitly, which means that the layout has fixed Width and Height attributes so that an area in the layout stays the designated size even when the application window is resized.

Note

When you change the Width or Height property of an object from a fixed value to Auto, the property is set to the default minimum value.

You can also transform an element in a layout panel to set a post-layout render position. This is useful for animation (for example, to move an element outside the bounds of a grid panel and have it fly into position). Transformations are relative to the layout position. Therefore, the Transform category of the Properties panel shows the default position as being (0,0). In most cases, you will not want to apply transformations to an element in a layout panel, except animation, where you want an element to move around relative to the final layout position.

Expression Blend has five primary layout panels, each one designed to manage a different type of layout. The following table describes these layout panels.

Panel Name Description
Cc295017.a87ee957-7fbf-4135-a6ab-6de7e63160aa(en-us,Expression.40).png

Grid

Arranges child elements in a very flexible layout of rows and columns that form a grid.

For more information, see Using the Grid layout panel.

Cc295017.95e40288-f7a6-4ddc-9d6a-68d0aa46d621(en-us,Expression.40).png

Canvas

Arranges child elements according to absolute x and y coordinates. Canvas enables you to have fixed positions for elements on the screen at run time, like a blank canvas.

For more information, see Using the Canvas layout panel.

Cc295017.ec58af86-cc2a-4e1f-91c0-883c5406fdfb(en-us,Expression.40).png

StackPanel

Arranges child elements into a single line that can be oriented, or stacked, horizontally or vertically.

For more information, see Using the StackPanel layout panel.

Cc295017.91486eda-6173-4ce8-9610-4f296dcb83d7(en-us,Expression.40).png

WrapPanel

Arranges child elements in sequential position from left to right, and then, when it runs out of room at the far-right edge of the panel, wraps the content to the next line, and so on from left-to-right, top-to-bottom. The orientation of a wrap panel can also be vertical so that the child elements flow from top-to-bottom, left-to-right.

For more information, see Using the WrapPanel layout panel.

Cc295017.db9f1ff5-6bca-441d-b289-c6781a478a5b(en-us,Expression.40).png

DockPanel

Arranges child elements so that they stay, or dock, to one edge of the panel.

For more information, see Using the DockPanel layout panel.

Other layout containers

Other layout containers also affect the arrangement of elements that they contain. However, these containers are not optimized to support the more robust UI scenarios that the primary layout panels handle more successfully. The following table describes the other layout containers.

Element Name Description
Cc295017.be354518-c54c-4f86-9c57-0b4a9d384b3e(en-us,Expression.40).png

Border

A simple element that draws a border, background, or both around an element. Border takes only one child element. You likely will want to position a grid or canvas panel within the border so that you can work with multiple child elements.

For more information about Border, see Other layout containers.

Cc295017.0cc3e2a4-7a8b-48ef-abad-c3673ac774d8(en-us,Expression.40).png

BulletDecorator

An element that can take only two child elements, typically a text string and a glyph (which represents a control such as a check box).

For more information about BulletDecorator, see Other layout containers.

Cc295017.5d9046cc-9edb-45eb-8c59-30af398f7b6c(en-us,Expression.40).png

Popup

A window that renders in front of all other content in an application but relative to another element. You can use a pop-up menu to provide additional information and options to users who interact with the primary piece of UI that the pop-up menu is relative to. Popup takes a single child element and positions itself based on a target element. By default, a Popup has a grid panel as its single child element. The grid panel then enables you to work with multiple child elements inside the Popup immediately after drawing it. In most cases you will not have to directly create a pop-up menu yourself. Instead, you can use a control, such as a menu or combo box, that has a pop-up menu in its template.

For more information about Popup, see Other layout containers.

Cc295017.5ca26a94-31cd-4fda-83c5-a9564b5b019d(en-us,Expression.40).png

ScrollViewer

An element that allows you to enable scrolling of the child elements that it contains. It takes only a single child element. Therefore, most of the time you will want to use a layout panel such as a stack panel, canvas panel, or grid panel in it. ScrollViewer is used in the templates of other controls, such as list boxes, to support the scrolling of content. When the content inside a ScrollViewer is too large, you can enable the content to be clipped. You can also control whether scroll bars are unavailable, hidden, visible, or automatically shown only when they are needed.

For more information about ScrollViewer, see Other layout containers.

Cc295017.f14d64f5-fb79-4d1d-a29e-05dd6f440e98(en-us,Expression.40).png

UniformGrid

Arranges child elements within equal, or uniform, grid regions. UniformGrid is not a variation of the grid panel; it can be more accurately described as a tiling layout element, because it creates equal spacing between each element that it contains, based on the number of rows and columns you specify. As you add child elements to a UniformGrid, each element is positioned in a region starting from top-left to bottom-right until the grid is filled. This is useful for a control such as an image list.

For more information about UniformGrid, see Other layout containers.

Cc295017.16691128-7f3d-45e0-b532-45e8a7162416(en-us,Expression.40).png

Viewbox

Scales all its child elements much like a zoom control. Because a view box accepts only a single child element, you will typically position a canvas panel or grid panel in it so that you can take advantage of the zoom effect on more than one child element.

For more information about Viewbox, see Other layout containers.

The root layout container

In the Objects and Timeline panel, you will notice an element labeled LayoutRoot. This represents the root layout panel in an Expression Blend document. By default, the layout root is a grid panel. The grid panel, in most cases, should be sufficient for top-level page layout. However, you can change the layout root to another layout panel by right-clicking it, pointing to Change Layout Type, and then selecting an alternative layout panel. You can also decide to have a canvas panel be your default LayoutRoot, instead of a grid panel, by clearing the Use a grid panel as the default layout for new items check box in the Project section of the Options dialog box (on the Tools menu).

How to work with child elements

Expression Blend attempts to add child elements to the root (or topmost) panel in a document. However, if another layout container is active elsewhere in the objects tree, then the child element will be added to that container. You can make an element active by clicking the layout panel. A blue highlight around the panel indicates that it is now the active element. The blue highlight appears in both the artboard and in the Objects and Timeline panel. When you create a new panel, and then immediately draw child elements inside the borders of that panel, note that the child elements will be put into the panel that you just created. This is because a newly created panel automatically becomes the active element.

The colors2 StackPanel object is the current active layout panel, to which new child objects will be added

Cc295017.a3b049ca-8d4c-417c-88e7-786a583c699a(en-us,Expression.40).png

Expression Blend also makes it easy to drag child elements between panels to reparent them into a different layout container. The following image shows an orange ellipse being moved from the root layout grid panel to another grid panel. A dashed bounding box and a text prompt will appear around the panel if the panel can accept a child element. Hold down the ALT key before releasing the mouse button to complete the reparenting action.

Reparenting an object from the root Grid panel into another Grid panel

Cc295017.95d9db96-a236-4ed6-b6ba-a141a8168dde(en-us,Expression.40).png

Complex layout

You often need more flexibility when you lay out your page than you can get by using a single layout panel. One way to create complex layouts is by using layout panels as containers for other layout panels. For example, you may want to use a dock panel in the LayoutRoot (which, by default, is the grid panel). This breaks the page into a collection of regions where each region typically contains one or more controls.

For more programmatic information about layout, see the .NET Development Cc295017.xtlink_newWindow(en-us,Expression.40).png section in the Windows Software Development Kit (SDK) Cc295017.xtlink_newWindow(en-us,Expression.40).png.

Send feedback about this topic to Microsoft. © 2011 Microsoft Corporation. All rights reserved.