SmartThreadPool v2.0
This commit is contained in:
Ami Bar
2009-12-19 16:32:41 +02:00
parent b30b4abdda
commit 4d6ffb5851
89 changed files with 13714 additions and 2639 deletions
+44
View File
@@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Text;
namespace STPCEDemo
{
public static class Pens
{
private static Pen _red = new Pen(Color.Red);
private static Pen _lawnGreen = new Pen(Color.LawnGreen);
private static Pen _green = new Pen(Color.Green);
private static Pen _darkGray = new Pen(Color.DarkGray);
private static Pen _white = new Pen(Color.White);
public static Pen Red
{
get { return _red; }
}
public static Pen LawnGreen
{
get { return _lawnGreen; }
}
public static Pen Green
{
get { return _green; }
}
public static Pen DarkGray
{
get { return _darkGray; }
}
public static Pen White
{
get { return _white; }
}
}
}