aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/WinXPBad/VirusLabel.cs
diff options
context:
space:
mode:
authorAlex-TIMEHACK <[email protected]>2017-11-04 09:50:43 +0000
committerAlex-TIMEHACK <[email protected]>2017-11-04 09:50:43 +0000
commitf933ce9b841a5f302066336877f86119de034eb4 (patch)
tree50e23551bae5ade3a263d9c1c054fb326a7ab5a6 /Histacom2/OS/WinXPBad/VirusLabel.cs
parent6ab1468786f1e865e9ff408d32149f9c9620d844 (diff)
parent382f0167714bbcad00ab710fe7dcfa05eaeb88ac (diff)
downloadhistacom2-f933ce9b841a5f302066336877f86119de034eb4.tar.gz
histacom2-f933ce9b841a5f302066336877f86119de034eb4.tar.bz2
histacom2-f933ce9b841a5f302066336877f86119de034eb4.zip
Updated my fork!
Conflicts: Histacom2/TitleScreen.Designer.cs Histacom2/TitleScreen.cs
Diffstat (limited to 'Histacom2/OS/WinXPBad/VirusLabel.cs')
-rw-r--r--Histacom2/OS/WinXPBad/VirusLabel.cs36
1 files changed, 36 insertions, 0 deletions
diff --git a/Histacom2/OS/WinXPBad/VirusLabel.cs b/Histacom2/OS/WinXPBad/VirusLabel.cs
new file mode 100644
index 0000000..4ea31b7
--- /dev/null
+++ b/Histacom2/OS/WinXPBad/VirusLabel.cs
@@ -0,0 +1,36 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Histacom2.OS.WinXPBad
+{
+ public partial class VirusLabel : Form
+ {
+ private bool light = true;
+
+ public VirusLabel()
+ {
+ InitializeComponent();
+ }
+
+ private void timer1_Tick(object sender, EventArgs e)
+ {
+ if (light)
+ {
+ label1.ForeColor = Color.Black;
+ light = false;
+ }
+ else
+ {
+ label1.ForeColor = Color.PaleGreen;
+ light = true;
+ }
+ }
+ }
+}