~ubuntu-branches/ubuntu/karmic/moon/karmic

« back to all changes in this revision

Viewing changes to test/xaml/test-radialgradientbrush-origin.xaml

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-02-14 12:01:08 UTC
  • Revision ID: james.westby@ubuntu.com-20090214120108-06539vb25vhbd8bn
Tags: upstream-1.0
ImportĀ upstreamĀ versionĀ 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 
2
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
 
3
 
 
4
   <Rectangle x:Name="test" RadiusX="4" RadiusY="4" Width="170" Height="200">
 
5
      <Rectangle.Fill>
 
6
        <RadialGradientBrush GradientOrigin="0.5,1.0">
 
7
          <GradientStop Color="#FFA051A1" Offset="0.5"/>
 
8
          <GradientStop Color="#33000000" Offset="1"/>
 
9
        </RadialGradientBrush>
 
10
      </Rectangle.Fill>
 
11
    </Rectangle>
 
12
 
 
13
</Canvas>
 
14