aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-08-07 14:04:08 -0400
committerlempamo <[email protected]>2017-08-07 14:04:08 -0400
commite838d66d36751fdbf5c2f7fadab8fee42729b6ac (patch)
treefc4d2e248b19f08f308dbf844d2a7225bb0e5cb4 /TimeHACK.Engine
parentcb0ebed2918341ce02978bc32ab6e284ae5f000a (diff)
downloadhistacom2-e838d66d36751fdbf5c2f7fadab8fee42729b6ac.tar.gz
histacom2-e838d66d36751fdbf5c2f7fadab8fee42729b6ac.tar.bz2
histacom2-e838d66d36751fdbf5c2f7fadab8fee42729b6ac.zip
minesweeper gfx part 1
Diffstat (limited to 'TimeHACK.Engine')
-rw-r--r--TimeHACK.Engine/Paintbrush.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/TimeHACK.Engine/Paintbrush.cs b/TimeHACK.Engine/Paintbrush.cs
index 026e5d8..087b87f 100644
--- a/TimeHACK.Engine/Paintbrush.cs
+++ b/TimeHACK.Engine/Paintbrush.cs
@@ -14,19 +14,19 @@ namespace TimeHACK.Engine
public static void PaintClassicBorders(object sender, PaintEventArgs e, int borderwidth)
{
ControlPaint.DrawBorder(e.Graphics, ((Control)sender).ClientRectangle,
- SystemColors.ControlLightLight, borderwidth, ButtonBorderStyle.Outset,
- SystemColors.ControlLightLight, borderwidth, ButtonBorderStyle.Outset,
- SystemColors.ControlLightLight, borderwidth, ButtonBorderStyle.Outset,
- SystemColors.ControlLightLight, borderwidth, ButtonBorderStyle.Outset);
+ Color.White, borderwidth, ButtonBorderStyle.Solid,
+ Color.White, borderwidth, ButtonBorderStyle.Solid,
+ Color.Gray, borderwidth, ButtonBorderStyle.Solid,
+ Color.Gray, borderwidth, ButtonBorderStyle.Solid);
}
public static void PaintClassicBordersIndented(object sender, PaintEventArgs e, int borderwidth)
{
ControlPaint.DrawBorder(e.Graphics, ((Control)sender).ClientRectangle,
- SystemColors.ControlDarkDark, borderwidth, ButtonBorderStyle.Inset,
- SystemColors.ControlDarkDark, borderwidth, ButtonBorderStyle.Inset,
- SystemColors.ControlDarkDark, borderwidth, ButtonBorderStyle.Inset,
- SystemColors.ControlDarkDark, borderwidth, ButtonBorderStyle.Inset);
+ Color.Gray, borderwidth, ButtonBorderStyle.Solid,
+ Color.Gray, borderwidth, ButtonBorderStyle.Solid,
+ Color.White, borderwidth, ButtonBorderStyle.Solid,
+ Color.White, borderwidth, ButtonBorderStyle.Solid);
}
}
}