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

« back to all changes in this revision

Viewing changes to test/xaml/test-animation-beginstoryboard-empty.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
 
2
   xmlns="http://schemas.microsoft.com/client/2007"
 
3
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
 
4
  <Canvas.Triggers>
 
5
    <EventTrigger RoutedEvent="Canvas.Loaded">
 
6
      <EventTrigger.Actions>
 
7
        <BeginStoryboard>
 
8
        </BeginStoryboard>
 
9
      </EventTrigger.Actions>
 
10
    </EventTrigger>
 
11
  </Canvas.Triggers>
 
12
  <Ellipse x:Name="ellipse"
 
13
      Height="20" Width="20" Canvas.Left="30" Canvas.Top="30"
 
14
      Fill="black"/>
 
15
</Canvas>