mirror of
https://github.com/farcasclaudiu/SmartThreadPool.git
synced 2026-06-22 11:01:28 +03:00
4d6ffb5851
SmartThreadPool v2.0
45 lines
908 B
C#
45 lines
908 B
C#
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; }
|
|
}
|
|
}
|
|
}
|