Archives for: "June 2012"
Will Metro UI kill WPF?
Windows 8 will use Metro UI, even it support xaml.But that is different from WPF.Will Metro UI kill WPF? Around 2008, WPF started to get the market. At that time, I had asked whether WPF will kill Winforms. But now, I am writing some Winform… more »
Custom Membership Provider
Custom Membership Provider is easy to do. Firstly, please extends MembershipProvider Codepublic class AdvCMSMembershipProvider : MembershipProvider Secondly, Right Click MembershipProvider, and then implements all abstract methods. The only method you… more »
Timer in WPF
In Windows Form time, there is a component for Timer. But in WPF, there is not such things. So, what thing we can do, when we need to execute a piece of code periodically. We can use the timers under System.Timers. But please do not use… more »