aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.cs
diff options
context:
space:
mode:
authorAlex-TIMEHACK <[email protected]>2017-05-19 21:01:07 +0100
committerAlex-TIMEHACK <[email protected]>2017-05-19 21:01:07 +0100
commit044d3dd3aa38f02693d1d2561a4276b2dc1bdd9a (patch)
tree44ce55271632801b9d0d677cc275376ea0bdff59 /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.cs
parent4221dbc55084b0269c82e027b6ac56957acb9912 (diff)
downloadhistacom2-044d3dd3aa38f02693d1d2561a4276b2dc1bdd9a.tar.gz
histacom2-044d3dd3aa38f02693d1d2561a4276b2dc1bdd9a.tar.bz2
histacom2-044d3dd3aa38f02693d1d2561a4276b2dc1bdd9a.zip
My Address Book is done!
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.cs
deleted file mode 100644
index 624267c..0000000
--- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-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 TimeHACK.OS.Win95.Win95Apps
-{
- public partial class WinClassicAddressBook : UserControl
- {
- public WinClassicAddressBook()
- {
- InitializeComponent();
- foreach (ToolStripMenuItem item in topmenu.Items)
- {
- item.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0)));
- item.BackColor = Color.Silver;
- item.BackgroundImage = Properties.Resources.sliversilver;
- item.BackgroundImageLayout = ImageLayout.Center;
- item.DisplayStyle = ToolStripItemDisplayStyle.Text;
- }
-
- //Time to prepare to load all the fonts up for the combo boxes
-
- //foreach (FontFamily font in System.Drawing.FontFamily.Families)
- //{
- // Added to the ComboBox here
-
- //comboFont.Items.Add(font.Name);
- //}
- }
- }
-}