diff options
| author | JayXKanz666 <slashandjake@gmail.com> | 2017-07-12 01:41:59 +0200 |
|---|---|---|
| committer | JayXKanz666 <slashandjake@gmail.com> | 2017-07-12 01:41:59 +0200 |
| commit | c45c5c46cafef304016469ae4f6a49c11479fb6c (patch) | |
| tree | 54d5c6764662220862bfb3b53ea6aa5061abca46 /TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs | |
| parent | 40d36a0435f8b2158ea2a37556b3488b7fa88f60 (diff) | |
| download | histacom2-c45c5c46cafef304016469ae4f6a49c11479fb6c.tar.gz histacom2-c45c5c46cafef304016469ae4f6a49c11479fb6c.tar.bz2 histacom2-c45c5c46cafef304016469ae4f6a49c11479fb6c.zip | |
Added new IE4
-Changed the way IE works (TemIE4.cs)
-Converted HTML websites to UserControls (/Win95Apps/IE4Sites)
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs b/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs new file mode 100644 index 0000000..d71c171 --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs @@ -0,0 +1,25 @@ +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.IE4Sites +{ + public partial class GoogleHome : UserControl + { + public GoogleHome() + { + InitializeComponent(); + } + + private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + TempIE4.GoToPage("www.google.stanford.edu"); + } + } +} |
