aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/Windows95.cs
diff options
context:
space:
mode:
authorJayXKanz666 <[email protected]>2017-03-29 03:53:18 +0200
committerJayXKanz666 <[email protected]>2017-03-29 03:53:18 +0200
commitd009e515e32048ec44116fcc7acc18b53de18e80 (patch)
treeaa49b0c22e47f8e53e1cdc80a5883e50feb28fca /TimeHACK.Main/Windows95.cs
parente5e18132058dc2add78b6d3f06bf1de84ca08d50 (diff)
downloadhistacom2-d009e515e32048ec44116fcc7acc18b53de18e80.tar.gz
histacom2-d009e515e32048ec44116fcc7acc18b53de18e80.tar.bz2
histacom2-d009e515e32048ec44116fcc7acc18b53de18e80.zip
added font to WM
Diffstat (limited to 'TimeHACK.Main/Windows95.cs')
-rw-r--r--TimeHACK.Main/Windows95.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/TimeHACK.Main/Windows95.cs b/TimeHACK.Main/Windows95.cs
index 44254e3..f07ad8e 100644
--- a/TimeHACK.Main/Windows95.cs
+++ b/TimeHACK.Main/Windows95.cs
@@ -129,14 +129,14 @@ namespace TimeHACK
{
WindowManager wm = new WindowManager();
TestApp test = new TestApp();
- wm.startWinClassic(test, "TestApp", null, true, true, new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))));
+ wm.startWinClassic(test, "TestApp", null, true, true);
}
private void downloaderTestToolStripMenuItem_Click(object sender, EventArgs e)
{
WinClassicDownloader opendownload = new WinClassicDownloader();
WindowManager wm = new WindowManager();
- wm.startWinClassic(opendownload, "Downloader", null, false, true, new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))));
+ wm.startWinClassic(opendownload, "Downloader", null, false, true);
opendownload.appName.Text = "Downloading: Survive The Day";
}
@@ -144,14 +144,14 @@ namespace TimeHACK
{
WinClassicInstaller openinstaller = new WinClassicInstaller();
WindowManager wm = new WindowManager();
- wm.startWinClassic(openinstaller, "Installer", null, false, true, new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))));
+ wm.startWinClassic(openinstaller, "Installer", null, false, true);
}
private void InternetExplorerToolStripMenuItem_Click(object sender, EventArgs e)
{
WinClassicIE4 ie = new WinClassicIE4();
WindowManager wm = new WindowManager();
- Engine.Template.WinClassic app = wm.startWinClassic(ie, "Internet Explorer 4", null, true, true, new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))));
+ Engine.Template.WinClassic app = wm.startWinClassic(ie, "Internet Explorer 4", null, true, true);
app.BringToFront();
startmenu.Hide();
}
@@ -170,7 +170,7 @@ namespace TimeHACK
{
WinClassicIE4 ie = new WinClassicIE4();
WindowManager wm = new WindowManager();
- Engine.Template.WinClassic app = wm.startWinClassic(ie, "Internet Explorer 4", null, true, true, new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))));
+ Engine.Template.WinClassic app = wm.startWinClassic(ie, "Internet Explorer 4", null, true, true);
app.BringToFront();
startmenu.Hide();
} else if (objListViewItem.Text == "Web Chat Setup")
@@ -178,7 +178,7 @@ namespace TimeHACK
WinClassicInstaller inst = new WinClassicInstaller();
WindowManager wm = new WindowManager();
inst.installname.Text = "Web Chat 1998";
- Engine.Template.WinClassic app = wm.startWinClassic(inst, "Internet Explorer 4", null, true, true, new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))));
+ Engine.Template.WinClassic app = wm.startWinClassic(inst, "Internet Explorer 4", null, true, true);
app.BringToFront();
startmenu.Hide();
}