Simple animation and stuff...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can someone point me to some good info on how to do somoe simple animation on a form.

Specifically, I want to have some tiles that when they are clicked, they flip over in place and reveal a number. Obviously the flipping part should be animated and the user interface should not have to wait for the tile animation to complete before another tile can be selected.

Thanks.

J
 
Hi,

Animation is made by looping through a sequent of static pictures. If you'd
like animation in your WinForms application, you could either use an
animated GIF directly or draw a sequent of static pictures,e.g on a
PictureBox, by yourself.

I found a sample of drawing a sequent fo static picutures to make
animation. You may visit the following link to get more information:

'An Animation Component using C#'
http://www.c-sharpcorner.com/UploadFile/mgold/AnimationComponent091420050623
32AM/AnimationComponent.aspx

Hope this helps.
If you have any question, please feel free to let me know.


Sincerely,
Linda Liu
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 
A MUCH easier solution here would be to use WPF to create the 3D model,
and then animate the model on a timeline when the animation is clicked.
This could be hosted in a Windows Forms app easily as well.

It's much easer to just create the model and animate it as opposed to
creating the model and writing the engine that has to animate it.
 
The main issue with this is that the end user has to have the 3.0 Framework,
correct? I'm already worried that not enough people will have the 2.0
Framework.

J


Nicholas Paldino said:
A MUCH easier solution here would be to use WPF to create the 3D model,
and then animate the model on a timeline when the animation is clicked.
This could be hosted in a Windows Forms app easily as well.

It's much easer to just create the model and animate it as opposed to
creating the model and writing the engine that has to animate it.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Linda Liu said:
Hi,

Animation is made by looping through a sequent of static pictures. If
you'd
like animation in your WinForms application, you could either use an
animated GIF directly or draw a sequent of static pictures,e.g on a
PictureBox, by yourself.

I found a sample of drawing a sequent fo static picutures to make
animation. You may visit the following link to get more information:

'An Animation Component using C#'
http://www.c-sharpcorner.com/UploadFile/mgold/AnimationComponent091420050623
32AM/AnimationComponent.aspx

Hope this helps.
If you have any question, please feel free to let me know.


Sincerely,
Linda Liu
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no
rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top