Rotation Animation only using XAML
Hi Finally I have implemented it successfully..... Hope someone would find it useful...My XAML looks as shown below...<Window x:Class="WpfApplication2.MainWindow"...
View ArticleRotation Animation only using XAML
Hi thanks... But i have already implemented this..... I have mentioned in my post that I am successfully implemented it using code. My intention is to do it using XAML. I have a my viewModel as...
View ArticleRotation Animation only using XAML
Have more time. I give you a step by step:First implement the interface into whatever class you bind to. You will be forced to impeliment the event:public event PropertyChangedEventHandler...
View ArticleRotation Animation only using XAML
1. For animations to work properly, they have to run in a seperate Thread.2. That is simply change Notification. Just implement INotifyPropertyChanged and fire the ChangeNotification as...
View ArticleRotation Animation only using XAML
Hi, I am creating a Circular Gauge control using WPF & MVVM with maximum usage of DataBinding.... I am using an Ellipse and 'Path' ( for the needle to be rotated). I am setting the the rotation...
View Article