Category Archives: C# WPF

WPF Charts (Pie, Line and Bar)

[Summary]The purpose of this tutorial is to introduce how to create WPF charts (Pie, Line and Bar) using the WPF Toolkit[/Summary] Preview Click the image to enlarge. Downloads Download demo project/source code (Visual Studio 2010 or Visual C# Express 2010) … Continue reading

Posted in C# WPF | Tagged , , | Leave a comment

C# random letter generator

Generating letters at random can be useful.  Here is some very simple code to achieve this; [csharp] /// <summary> /// Gets a letter from the English alphabet at random /// </summary> public static class RandomLetter { private const string _characters … Continue reading

Posted in C# WinForms, C# WPF | Tagged , , , | Leave a comment

WPF Webcam image acquisition tutorial & source code

Just a quick note to let you know that I have published a little tutorial, complete with source code, explaining to to acquire images from your web camera in a WPF environment.  The code is not completely native WPF code, … Continue reading

Posted in C# WPF | Tagged , , | Leave a comment

New SQL project launched

As you may know, I am always very keen to learn.  At the minute I am learning how to manipulate an SQL database from a C# project. For this, I have developed a C# namespace that encapsulates some common methods … Continue reading

Posted in C# WPF, SQL | Tagged , , , | Leave a comment

WPF Stock Ticker

After watching BBC’s My Family last night, I woke up today with the desire to write a basic stock ticker using C#/WPF. I have written a very simple tutorial and provided the full source code for the resulting project. WPF … Continue reading

Posted in C# WPF | Tagged , , | Leave a comment