- Congig 추가

- friction.exe -> squeak.exe
- 색상 변경
- analysis 기준 변경
This commit is contained in:
2017-06-21 02:41:29 +09:00
parent 9bf6a38f6d
commit 44841453e9
7 changed files with 271 additions and 77 deletions

View File

@@ -12,12 +12,12 @@ namespace friction
{
public static Color Backcolor = Color.FromArgb(255, 45, 45, 48);
public static Color BackColorTrans = Color.FromArgb(230, 45, 45, 48);
public static Color Forecolor = Color.FromArgb(255, 241, 241, 241);
public static Color Forecolor = Color.FromArgb(255, 235, 235, 235);
public static Color Green = Color.YellowGreen;
public static Color Yellow = Color.Gold;
public static Color Red = Color.DarkOrange;
public static Color Green = Color.LimeGreen;
//public static Color Yellow = Color.Gold;
public static Color Yellow = Color.FromArgb(255, 255, 165, 0);
public static Color Red = Color.OrangeRed;
public static Color Gray = Color.DarkGray;
public static Color White = Color.Snow;
@@ -29,6 +29,7 @@ namespace friction
public static void Apply(DataGridView ctrl)
{
ctrl.BackgroundColor = Backcolor;
ctrl.DefaultCellStyle.BackColor = Backcolor;
ctrl.DefaultCellStyle.ForeColor = Forecolor;
ctrl.EnableHeadersVisualStyles = false;