Khalil Muhammad

Archive for the ‘C#’ Category

Create CSV From a Simple Collection.

leave a comment »

Here is a handy snippet I normally use to create a CSV string from a simple collection of strings:


   1: public string ToCsv(IEnumerable<string> collection){
   2:     return string.Join(",", collection.ToArray());
   3: }

Written by micaleel

March 17, 2010 at 11:07 AM

Posted in C#, Linq, Programming, Snippet

Windows XP Style XPlorerBar for WPF on CodeProject

leave a comment »

I’ve used the XP Style explorer bar several times in my Windows Forms projects. Here is pretty impressive CodeProject article written by Olivier Simon with an implementation of a fully customizable XPlorerBar for WPF.

Screenshot of the WPF XplorerBar

Screenshot of the WPF XplorerBar

Written by micaleel

December 6, 2008 at 11:03 AM

Posted in C#, Controls, WPF, XAML

Follow

Get every new post delivered to your Inbox.