aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/WinXPBad/WinClassicIE6Bad.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-10-29 00:50:08 -0400
committerlempamo <[email protected]>2017-10-29 00:50:08 -0400
commitd73bed3a5e57dace6215d0dafc52cf16c19db0a9 (patch)
tree30929514e95f76b328c0f182f986722c7d76a8ef /Histacom2/OS/WinXPBad/WinClassicIE6Bad.cs
parentb2e99d751dd7417599212df04c74cdeb60c6453e (diff)
downloadhistacom2-d73bed3a5e57dace6215d0dafc52cf16c19db0a9.tar.gz
histacom2-d73bed3a5e57dace6215d0dafc52cf16c19db0a9.tar.bz2
histacom2-d73bed3a5e57dace6215d0dafc52cf16c19db0a9.zip
making progress on bad ie6
Diffstat (limited to 'Histacom2/OS/WinXPBad/WinClassicIE6Bad.cs')
-rw-r--r--Histacom2/OS/WinXPBad/WinClassicIE6Bad.cs35
1 files changed, 35 insertions, 0 deletions
diff --git a/Histacom2/OS/WinXPBad/WinClassicIE6Bad.cs b/Histacom2/OS/WinXPBad/WinClassicIE6Bad.cs
new file mode 100644
index 0000000..84a5646
--- /dev/null
+++ b/Histacom2/OS/WinXPBad/WinClassicIE6Bad.cs
@@ -0,0 +1,35 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Drawing;
+using System.Data;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Histacom2.OS.WinXPBad
+{
+ public partial class WinClassicIE6Bad : UserControl
+ {
+ private bool light = true;
+
+ public WinClassicIE6Bad()
+ {
+ InitializeComponent();
+ }
+
+ private void originalTimer_Tick(object sender, EventArgs e)
+ {
+ if (light)
+ {
+ label1.ForeColor = Color.Black;
+ light = false;
+ }
+ else {
+ label1.ForeColor = Color.PaleGreen;
+ light = true;
+ }
+ }
+ }
+}