Grid panel
The grid panel is the most flexible layout container compared to other layout containers that are designed to manage more specific layout functionality. Microsoft Expression Blend offers two layout editing modes for working with grid panels:
Canvas layout mode (default mode) provides an editing experience that is just like editing inside a canvas panel. In this mode, when you move column and row dividers that you've set, the elements inside those rows and columns stay in place.
Grid layout mode (advanced) provides more advanced layout functionality. In this mode, the grid panel in design time behaves like the run-time behavior of the grid.
You can switch between the two modes by clicking the mode icon in the upper-left corner when a grid panel is selected, or by selecting or clearing the Use grid layout mode check box in the Artboard section of the Options dialog box (on the Tools menu).
Layout modes for working with grid panels
Add a grid panel to a document by using the layout container submenu or the Asset Library in the Toolbox.
Arrangement of objects in a grid panel that has been divided into three rows and three columns, shown in Grid layout mode
Positioning, sizing, and arranging
The core of layout in a grid panel is how to effectively position, size, and arrange elements by using alignment, margins, and Width and Height properties:
**Alignment ** Determines what position an element takes in relation to the element's parent element.
Margins Determines the amount of empty space around the control, between the outside of the child element and the boundaries of the panel.
**Width and Height ** Fixed values measured in pixels (or, device-independent units that are approximately 1/96 inch). You can set these properties to Auto so that child elements will automatically resize depending on the sizing of the parent panel.
Back to top
Arranging child elements
You can arrange elements in a grid by sectioning off areas of the grid. You can do this by using column and row dividers to create a series of rows and columns that define regions in which you can lay out elements in the grid. When the grid panel is the active element in your document, blue rulers appear along the top and left sides of the grid. When you move your mouse pointer over the rulers using the Selection tool, the pointer changes to an arrow with a plus (+) sign , and an orange line shows where a column or row will be added. Clicking anywhere on the top ruler adds a column to the grid at that position, and clicking the left ruler adds a row.
Adding a column grid divider
You can draw child elements in a grid panel so that the elements overlap each other. Overlapping elements will be visible depending on their Z order—the order in which the elements were drawn or positioned in the parent element. You can change the Z order of elements by using Order on the Object menu, or by right-clicking items under Objects and Timeline in the Interaction panel, pointing to Order, and then clicking the desired command. Child elements can also span across multiple columns or rows. You can also turn on snapping so that you can better arrange objects by snapping to snaplines. Snapping lets you drag objects on the artboard and have them snap to the margins, baseline (for text objects), or alignment (red dashed line) of other objects in the same container element such as a layout panel, or the column and row dividers in a grid panel.
Back to top
Sizing rows and columns
When you are in the Grid layout mode of a grid panel, lock icons appear around the rulers on the top and left sides of the grid panel. You can use these lock icons to set the type of sizing that is used for the rows and columns in your grid. You can set height values for rows, and width values for columns. You have three options for sizing rows and columns in a grid, and these options in turn affect the arrangement of the child elements in the grid. These sizing options are as follows:
**Fixed sizing **Uses pixel values (px), and is set by clicking the lock icon to set it to Pixel sized (the locked position) . Fixed sizing means that the row or column will not resize.
Note
In Windows Presentation Foundation (WPF) applications (such as those created by using Expression Blend), pixels refer to device-independent pixels or device-independent units that are equivalent to the size of a pixel on a monitor that is set to a screen resolution of 96 DPI. Each unit is approximately 1/96 inch, regardless of monitor size or screen resolution.
**Star sizing **Uses star values (*), and is set by clicking the lock icon to set it to Star sized (the unlocked position) . Star sizing has an effect similar to percentage-sizing in HTML.
**Auto sizing **Uses no defined Width and Height properties, and is set by clicking the lock icon to set it to Auto sized. Auto sizing means that elements in the grid panel will resize when the parent element resizes.
Star sizing and auto sizing set for different columns in a grid panel
When a grid divider is selected on the artboard, you can use the Properties panel to select the sizing options and adjust the Width property when you use star or fixed sizing. You can also set the MaxWidth and MinWidth properties of a column grid divider in the Properties panel.
Back to top
Positioning child elements
In Canvas layout mode, you can position elements visually by working directly on the artboard and dragging elements anywhere in a grid panel (and even outside the boundaries), or you can enter precise position values under Layout in the Properties panel.
In Grid layout mode, you set the positions of child elements in a grid by setting margins for each element. Margins specify the amount of offset for an element from the rows and columns that define the grid, or from the edges of the cell in the grid. You set margins when you drag a child element into position in a grid, and they represent the distance from the edge of the selected element to the next gridline (row or column). You set these by clicking the margin (knot) adorners. If a margin adorner is open like so or , then that margin is not set. If a margin adorner is closed like so or , then that margin is set. Resizing the grid during run time leaves any elements in position where the margins aren't set. Elements bound to a margin will move with the margin as it is resized.
Expression Blend also uses a simple rule to set the default alignment: If the child element you draw or resize crosses the middle of a row or column, the Width and Height will be Auto; otherwise, it will be fixed. You can also set an alignment option that indicates if the margin is enforced or not when the grid resizes. The alignment is shown in the grid as solid (alignment set) or dashed (no alignment set) lines, as shown in the following image.
A button in a Grid panel bound (margins set—notice that the margin value is indicated) to the left and right, and unbound (margins not set) at the top and bottom
Horizontal alignment
Left. Anchors to the left but stretches to the right on resize.
Center. Always anchored to the horizontal center regardless of resizing.
Right. Anchors to the right but stretches to the left on resize.
Stretch. Stretches in both horizontal directions on resize.
Vertical alignment
Bottom. Anchors to the bottom but stretches to the top on resize.
Center. Always anchored to the vertical center regardless of resizing.
Top. Anchors to the top but stretches to the bottom on resize.
Stretch. Stretches in both vertical directions on resize.
Margin settings Fixed values measured in pixels (or, device-independent units that are approximately 1/96 inch) for Top, Left, Right, and Bottom margins. You set these when you drag a child element into position in a grid and represent the distance from the edge of the selected element to the next gridline.
Back to top
Sizing child elements
You have two primary sizing options to use for child elements: fixed-size or auto-size. Fixed-sized elements have specific width and height values set in the Layout category. Auto-sized elements have width and height values set to Auto and automatically resize depending on the sizing of the parent panel.
MinWidth and MinHeight The smallest an element can be resized or scaled in a row or column.
MaxWidth and MaxHeight The largest an element can be resized or scaled in a row or column. You can set this to Infinity if you do not want to set a maximum size.
Clip contents Determines if the parent panel should clip its child elements.
Back to top
Grid Splitter
GridSplitter is a control used in a grid panel that a user interacts with to manually resize parts of a grid at run time. GridSplitter is available in the Asset Library.
For more information about the grid panel, the GridSplitter control, or how to create custom layout panels, see the .NET Development section of the Windows Software Development Kit (SDK).
Back to top