mirror of
https://github.com/farcasclaudiu/SmartThreadPool.git
synced 2026-06-28 15:01:07 +03:00
v2.0
SmartThreadPool v2.0
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user