I recently published an article at The Code Project’s website regarding a custom Vertical Label Control with support for transparent background. Check it out!
using System;
namespace mycsharp.wordpress.com
{
static class Program
{
/// <summary>
/// This is my first post for my C# Adventure Blog
/// </summary>
[STAThread]
static void Main()
{
Console.WriteLine("Hello wordpress world!...");
}
}
}