2009-12-07 Rolf Bjarne Kvinge <RKvinge@novell.com>
[moon.git] / test / xaml / test-layout-shape.xaml
blob86250bffbe608b4f6c33f32650b663ab02b6e940
1 <Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2   <Border Width="50" Height="50" Background="Blue">
3      <Path Stroke="Red" Stretch="Fill" Data="M100,200 C100,100 250,100 250,200 S400,300 400,200"/>
4   </Border>
6   <Border Background="Green" Canvas.Top="50">
7      <Path Stroke="Red" Width="50" Height="50" Stretch="Fill" Data="M100,200 C100,100 250,100 250,200 S400,300 400,200"/>
8   </Border>
10   <Border Background="Yellow" Canvas.Left="100" Width="300" Height="300">
11      <Path Stroke="Black" Data="M100,200 C100,100 250,100 250,200 S400,300 400,200"/>
12   </Border>
13 </Canvas>