|
|
|
|
|
Home
»
WPF References
»
How to Start,Stop,Pause and Resume animation to a Ellipse in WPF using VB.NET
|
|
|
|
Author Rank :
|
|
|
Page Views :
|
1740
|
|
Downloads :
|
8
|
|
Rating :
|
Rate it
|
|
Level :
|
Intermediate
|
|
|
|
|
Download
Files:
|
|
|
|
|
|
|
|
|
|
|
|
Introduction
Here in this article I am explainning that how we can give animation to the shapes of the WPF. As we have taken a ellipse on storyboard and some buttons as start, pause, resume, Leave to fill and stop for showing animation. We have coloured the ellipse with RadialGradientBrush. When we click the start button the animation in the ellipse will start. Like start we can pause, resume and stop animation in the ellipse. The implementation needs Ellipse, StackPanel, RadialGradientBrush, Button and StoryBoard.
Getting Started
- Simply create a new WPF application.
- Drag a StackPanel, Ellipse and Button control on MainWindow. Your Window will look like below.

- Your MainWindow.xaml page will look like below.
<Window x:Class="MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="297" Width="366"> <StackPanel Margin="15" Height="237" Width="321"> <Ellipse Name="ellipse" Width="150" Height="142"> <Ellipse.Fill> <RadialGradientBrush> <GradientStop Color="Pink" Offset="0" /> <GradientStop Color="White" Offset="0.1" /> <GradientStop Color="SkyBlue" Offset="0.9" /> <GradientStop Color="Yellow" Offset="1" /> </RadialGradientBrush> </Ellipse.Fill> </Ellipse> <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,20,0,0"> <Button Name="butnStart">Start</Button> <Button Name="butnPause">Pause</Button> <Button Name="butnResume">Resume</Button> </StackPanel> <StackPanel Orientation="Horizontal" HorizontalAlignment="Center"> <Button Name="butnLeaveToFill">Leave To Fill</Button> <Button Name="butnStop">Stop</Button> </StackPanel> <StackPanel.Triggers> <EventTrigger RoutedEvent="Button.Click" SourceName="butnStart"> <EventTrigger.Actions> <BeginStoryboard Name="MyFirstStoryboard"/> <Storyboard> <DoubleAnimation Storyboard.TargetName="ellipse" Storyboard.TargetProperty="Fill.RadiusX" From="0" To="1" Duration="0:0:3" RepeatBehavior="5x" /> </Storyboard> </BeginStoryboard> </EventTrigger.Actions> </EventTrigger> <EventTrigger RoutedEvent="Button.Click" SourceName="butnPause"> <PauseStoryboard BeginStoryboardName="MyFirstStoryboard" /> </EventTrigger> <EventTrigger RoutedEvent="Button.Click" SourceName="butnResume"> <ResumeStoryboard BeginStoryboardName="MyFirstStoryboard" /> </EventTrigger> <EventTrigger RoutedEvent="Button.Click" SourceName="butnLeaveToFill"> <SkipStoryboardToFill BeginStoryboardName="MyFirstStoryboard" /> </EventTrigger> <EventTrigger RoutedEvent="Button.Click" SourceName="butnStop"> <StopStoryboard BeginStoryboardName="MyFirstStoryboard" /> </EventTrigger> </StackPanel.Triggers> </StackPanel> </Window>
- Now run your application.
Output






Summary In this article you learned that how you can give animation to the shapes.
|
|
Comment Request!
Thank you for reading this post. Please post your feedback, question, or comments about this post
Here.
|
|
|
|
|
Login
to add your contents and source code to this article
|
|
|
|
|
|
|
|
|
|
|
|
Shalini Juneja
Shalini juneja is working as a Software Trainnee .she has completed her Master degree in Computer application.she prefers to work in database and asp.net platform.
|
|
|
|
|
|
|
|
|
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional
consulting company, our consultants are well-known experts in .NET and many of them
are MVPs, authors, and trainers. We specialize in Microsoft .NET development and
utilize Agile Development and Extreme Programming practices to provide fast pace
quick turnaround results. Our software development model is a mix of Agile Development,
traditional SDLC, and Waterfall models.
|
|
Click here to learn more about C# Consulting. |
|
|
|
|
|
|
|
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon.
Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees.
As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
|
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
|
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
|
ASP.NET 4 Hosting
Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites – Click Here!
|
|
|
|
|
|
|
|
|
|
|
|
|