NinethSense oWnZ mE!: Praveen’s drawing book

Choose a Topic:

Fri
4
Jul '08

Composite Application Guidance for WPF (Prism)

The Composite Application Guidance (from Microsoft patterns & practices) for WPF is designed to help you more easily build enterprise-level Windows Presentation Foundation (WPF) client applications. This guidance will help you design and build flexible composite WPF client applications—composite applications use loosely coupled, independently evolvable pieces that work together in the overall application.


Check this: http://msdn.microsoft.com/en-us/library/cc707819.aspx

Using the guidance streamlines the WPF team development experience. You can build solutions that take advantage of the full power of WPF and that are highly maintainable, testable, and whose pieces can be developed by separate teams.

Community site: http://www.codeplex.com/compositewpf
Wed
23
Apr '08

Beginner’s WPF Animation Tutorial - on Codeproject

My “Beginner’s WPF Animation Tutorial” articke on CodeProject available at http://www.codeproject.com/KB/WPF/WPFAnimation.aspx



(I reported this here earlier with another link which was under - non-edited contributions of codeproject)
Thu
6
Mar '08

Silverlight 2 Beta 1 is also ready!



URL: http://www.microsoft.com/silverlight/resources/installationfiles.aspx?v=2.0

SDK for Silverlight 2 Beta 1 is available at http://www.microsoft.com/downloads/details.aspx?FamilyID=1840cab5-196c-4264-b55d-562242a72625&DisplayLang=en
Mon
28
Jan '08

Beginner’s WPF Animation tutorial




My article for ‘Beginners WPF Animation’ is availble on codeproject.com.

Check the CodeProject article at http://www.codeproject.com/KB/WPF/WPFAnimation.aspx
'

WPF - running wheel animation

We can make a rotate animation with image1.RenderTransformOrigin = new Point(0.5, 0.5); so that we will make the feeling wheel is rotating. Here is the code:
 
 DoubleAnimation da = new DoubleAnimation(360, 0, new Duration(TimeSpan.FromSeconds(3)));
RotateTransform rt = new RotateTransform();
image1.RenderTransform = rt;
image1.RenderTransformOrigin = new Point(0.5, 0.5);
da.RepeatBehavior = RepeatBehavior.Forever;
rt.BeginAnimation(RotateTransform.AngleProperty, da);
More detailed version is available at http://www.digitalmanic.com/index.php?title=Beginners_Animation_tutorial_-_Rotate_2
Fri
25
Jan '08

Beginners Animation tutorial - Rotation

My second WPF animation tutorial is available at http://www.digitalmanic.com/index.php?title=Beginners_Animation_tutorial_-_Rotate

 
            DoubleAnimation da = new DoubleAnimation();
            da.From = 0;
            da.To = 360;
            da.Duration = new Duration(TimeSpan.FromSeconds(3));
            da.RepeatBehavior = RepeatBehavior.Forever;
            RotateTransform rt = new RotateTransform();
            rectangle1.RenderTransform = rt;
            rt.BeginAnimation(RotateTransform.AngleProperty, da);
'

Beginners Animation tutorial with WPF - C#

I wrote this tutorial for WPF beginners. Expected readers are programmers.

Read the full tutorial at: http://www.digitalmanic.com/index.php?title=Beginners_Animation_tutorial


 
DoubleAnimation da = new DoubleAnimation();
da.From = 30;
da.To = 100;
da.Duration =  new Duration(TimeSpan.FromSeconds(1));
Button1.BeginAnimation(Button.HeightProperty, da);
The CodeProject Microsoft Developer Network Official ASP.NET Forums Microsoft .NET Framework Community Microsoft Most Valuable Professional Kidoos forums Microsoft Visual Studio Developer Home Professional Information Technology Solutions Microsoft Research Home Trivandrum Microsoft Users Group Community Website