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

« back to all changes in this revision

Viewing changes to test/xaml/test-imagebrush-opacity.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
        <Rectangle Width="100" Height="100" Fill="Black" />
 
3
        <Rectangle Width="100" Height="100">
 
4
        <Rectangle.Fill>
 
5
                <ImageBrush ImageSource="mono.png" Stretch="None" />
 
6
        </Rectangle.Fill>
 
7
        </Rectangle>
 
8
 
 
9
        <Rectangle Width="100" Height="100" Canvas.Left="101" Fill="Red" />
 
10
        <Rectangle Width="100" Height="100" Canvas.Left="101" Opacity="0.5">
 
11
        <Rectangle.Fill>
 
12
                <ImageBrush ImageSource="mono.png" Stretch="None"/>
 
13
        </Rectangle.Fill>
 
14
        </Rectangle>
 
15
 
 
16
        <Rectangle Width="100" Height="100" Canvas.Top="101" Fill="Green" />
 
17
        <Rectangle Width="100" Height="100" Canvas.Top="101">
 
18
        <Rectangle.Fill>
 
19
<!-- MS bug ? the Opacity value isn't used -->
 
20
                <ImageBrush ImageSource="mono.png" Stretch="None" Opacity="0.5" />
 
21
        </Rectangle.Fill>
 
22
        </Rectangle>
 
23
 
 
24
        <Rectangle Width="100" Height="100" Canvas.Top="101" Canvas.Left="101" Fill="Blue"/>
 
25
        <Rectangle Width="100" Height="100" Canvas.Top="101" Canvas.Left="101" Opacity="0.5">
 
26
        <Rectangle.Fill>
 
27
<!-- MS bug ? the Opacity value isn't used -->
 
28
                <ImageBrush ImageSource="mono.png" Stretch="None" Opacity="0.5" />
 
29
        </Rectangle.Fill>
 
30
        </Rectangle>
 
31
</Canvas>