我有一個分配,我想旋轉一個球存在於橢圓中遞歸應用程序加載並保持旋轉直到它關閉......但我不知道這樣做..任何人請幫助我..在此先感謝。我在XAML代碼是...如何在WPF中旋轉橢圓
<Window Loaded="StartGame" x:Class="PaddingBall.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="500" Width="700" Background="White" Name="playground" ResizeMode="NoResize"
WindowStartupLocation="CenterScreen" SizeToContent="WidthAndHeight">
<Canvas Width="700" Height="500">
<Grid Height="462" Width="700" Canvas.Top="-18">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="700*" />
<ColumnDefinition Width="0*" />
<ColumnDefinition Width="0*" />
</Grid.ColumnDefinitions>
<Ellipse Margin="108,88,0,0" Name="ball" Stroke="Black" Height="29"
VerticalAlignment="Top" Stretch="UniformToFill" HorizontalAlignment="Left"
Width="28" RenderTransformOrigin="0.5,0.5">
<Ellipse.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform Angle="2735.771"/>
<TranslateTransform/>
</TransformGroup>
</Ellipse.RenderTransform>
<Ellipse.Fill>
<ImageBrush ImageSource="C:\Users\A TECH\Desktop\project\2.jpg"/>
</Ellipse.Fill>
<Ellipse.BitmapEffect>
<BevelBitmapEffect BevelWidth="1" />
</Ellipse.BitmapEffect>
<Ellipse.BitmapEffectInput>
<BitmapEffectInput />
</Ellipse.BitmapEffectInput>
</Ellipse>
<Rectangle Height="13" Margin="200,390,0,0" Name="pad" Stroke="Black"
VerticalAlignment="Bottom" Fill="Black" HorizontalAlignment="Left" Width="100" />
</Grid>
</Canvas>
你應該看看[故事板] (http://msdn.microsoft.com/en-us/libra ry/ms742868(v = vs.110).aspx) – Santux