programming4us
programming4us
MULTIMEDIA

Positioning Elements in XAML

7/25/2010 5:09:38 PM
sec0404.html

If you don't specify the position of an element, it is positioned at the origin (0,0) of the display area. You can try this out yourself: create a Silverlight XAML file and put some <TextBlock> elements on it. The text contents within those elements will overlap, since all text is displayed with the top-left corner at (0,0).

You can change this for most elements by setting their Canvas.Top and Canvas.Left properties. These properties denote the x and y coordinates of the element, respectively. The following text block would be shown 50 pixels to the right, 100 pixels to the bottom:

<TextBlock Canvas.Left="50" Canvas.Top="100" Text="Silverlight" />

However, there is more to positioning, and here the <Canvas> element comes into play again. A canvas can also have a position:

<Canvas Canvas.Left="50" Canvas.Top="100">
...
</Canvas>

The clue is that all elements within the canvas are positioned relative to the surrounding canvas. Have a look at Example 1, for instance.

Example 1. Nested, positioned canvases in the XAML file (Page.xaml, project Canvas)

<UserControl x:Class="Canvas.Page"
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="400" Height="300">
<Grid x:Name="LayoutRoot" Background="White">
<Canvas Width="500" Height="500" Background="Red">
<Canvas Canvas.Left="50" Canvas.Top="50" Background="Green"
Width="400" Height="400">
<Canvas Canvas.Left="50" Canvas.Top="50" Background="Yellow"
Width="300" Height="300">
<Canvas Canvas.Left="50" Canvas.Top="50" Background="Blue"
Width="200" Height="200">
<TextBlock Canvas.Left="50" Canvas.Top="50" FontSize="20"
Text="Silverlight"/>
</Canvas>
</Canvas>
</Canvas>
</Canvas>
</Grid>
</UserControl>

It contains several canvases, each (except for the outer one) having Canvas.Left="50" and Canvas.Top="50". Inside the innermost <Canvas> element resides a <TextBlock> element with Canvas.Left="50" and Canvas.Top="50" as well. Each indentation always refers to the parent canvas and is not an absolute coordinate. Therefore, each canvas starts 50 pixels to the right and 50 pixels to the bottom from where its parent canvas starts. The Canvas.Left and Canvas.Top properties are also called dependency properties: they depend on their parent <Canvas> element. Likewise, <Canvas> elements may be called dependency objects. Figure 1 shows the browser output.

Figure 1. The nested canvases


Only <Canvas> elements that have a fixed width and height show their background color. If you omit this information, the background remains the default, which in our example is white.


Of course, these canvases overlap each other. Silverlight uses the following approach: all elements are stacked onto each other, so there is a (virtual) third dimension. Therefore, the text from Example 1 resides on top of all canvases, since this element comes last in the document. This is why the text can be seen at all. In CSS, there is a property called z-index that assigns the "z coordinate" of an element: the higher the value, the further up on the stack it is.

Silverlight uses the same principle. You may assign a z-index by setting the Canvas.ZIndex property. Note that you can also nest z-index values; however, these values are compared only on the same element level. Assume that you have a canvas with z-index 3 that contains two rectangles with z-index 2 and z-index 1. The rectangle with the higher z-index is placed above the one with the lower z-index. However, the outer canvas will not overlap the rectangles, although its z-index is higher.

Example 2 is a variation of Example 1: everything except the outer canvas is gone, but we added rectangles. Usually they would overlap, similar to Figure 1, but this time we set Canvas.ZIndex so that the "inner" elements have a lower z-index. Therefore, the first rectangle is drawn over the second one, the second one is drawn over the third one, and so on. The lowest z-index is assigned to the text block. This text block is now overlapped by the blue rectangle. Therefore, the text itself is not visible, as Figure 2 shows.

Example 2. Setting the z-index, the XAML file (Page.xaml, project ZIndex)

<UserControl x:Class="ZIndex.Page"
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="400" Height="300">
<Grid x:Name="LayoutRoot" Background="White">
<Canvas Width="500" Height="500" Background="White">
<Rectangle Canvas.Left="50" Canvas.Top="50" Fill="Red"
Width="200" Height="200" Canvas.ZIndex="5"/>
<Rectangle Canvas.Left="100" Canvas.Top="100" Fill="Green"
Width="200" Height="200" Canvas.ZIndex="4"/>
<Rectangle Canvas.Left="150" Canvas.Top="150" Fill="Yellow"
Width="200" Height="200" Canvas.ZIndex="3"/>
<Rectangle Canvas.Left="200" Canvas.Top="200" Fill="Blue"
Width="200" Height="200" Canvas.ZIndex="2"/>
<TextBlock Canvas.Left="250" Canvas.Top="250" FontSize="20"
Text="Silverlight" Canvas.ZIndex="1"/>
</Canvas>
</Grid>
</UserControl>

Figure 2. Overlapping rectangles with z-index


Other  
 
PS4 game trailer XBox One game trailer
WiiU game trailer 3ds game trailer
Top 10 Video Game
-   Minecraft Mods - MAD PACK #10 'NETHER DOOM!' with Vikkstar & Pete (Minecraft Mod - Mad Pack 2)
-   Minecraft Mods - MAD PACK #9 'KING SLIME!' with Vikkstar & Pete (Minecraft Mod - Mad Pack 2)
-   Minecraft Mods - MAD PACK #2 'LAVA LOBBERS!' with Vikkstar & Pete (Minecraft Mod - Mad Pack 2)
-   Minecraft Mods - MAD PACK #3 'OBSIDIAN LONGSWORD!' with Vikkstar & Pete (Minecraft Mod - Mad Pack 2)
-   Total War: Warhammer [PC] Demigryph Trailer
-   Minecraft | MINIONS MOVIE MOD! (Despicable Me, Minions Movie)
-   Minecraft | Crazy Craft 3.0 - Ep 3! "TITANS ATTACK"
-   Minecraft | Crazy Craft 3.0 - Ep 2! "THIEVING FROM THE CRAZIES"
-   Minecraft | MORPH HIDE AND SEEK - Minions Despicable Me Mod
-   Minecraft | Dream Craft - Star Wars Modded Survival Ep 92 "IS JOE DEAD?!"
-   Minecraft | Dream Craft - Star Wars Modded Survival Ep 93 "JEDI STRIKE BACK"
-   Minecraft | Dream Craft - Star Wars Modded Survival Ep 94 "TATOOINE PLANET DESTRUCTION"
-   Minecraft | Dream Craft - Star Wars Modded Survival Ep 95 "TATOOINE CAPTIVES"
-   Hitman [PS4/XOne/PC] Alpha Gameplay Trailer
-   Satellite Reign [PC] Release Date Trailer
Video
programming4us
 
 
programming4us