WPF Charts

For my 3rd year SEP project my supervisor want me to add mathematical graphs for the Question Generating System. So I was looking for WPF libraries. I found several libraries for graphing but there was no proper documentation. Finally I found a book.
WPF Metro

What is metro?In Windows Phone 7, Microsoft introduced its Metro style user interface. The Metro style UI is the touch-and-tile interface that Microsoft designed to create an interface focused on content, information, and movement. It is designed to.
WPF Animations

Windows Presentation Foundation (WPF) is a Computer Software graphical subsystem for rendering user interfaces in Windows-based applications by Microsoft. WPF attempts to provide a consistent programming model for building applications and separates.
How to Export an xml file from WPF application

In my 3rd year project I had to export an xml file which contains data about questions for moodle. To do this task I use xml writer. So I am going to discuss how to read data from a DataGrid and export data as an xml file.
First add this headers
using System.Xml.Serialization;
using System.IO;
using System.Xml;
using System.Data;
This.
10 WPF tips
Today I am going to discuss about very useful tips in WPF application developing.
1) How to validate a Text Box using regular expressions.
This is very easy no more need to use if else blocks and lengthy codes to validate the Text Boxes only need regular.