1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
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;
using TimeHACK.Engine;
namespace TimeHACK.OS.Win95.Win95Apps.IE4Sites
{
public partial class _12padams1998 : UserControl
{
public _12padams1998()
{
InitializeComponent();
button1.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2);
button2.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2);
button3.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2);
button4.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2);
button5.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2);
button6.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2);
button7.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2);
}
private void button3_Click(object sender, EventArgs e)
{
WinClassicDownloader opendownload = new WinClassicDownloader();
WindowManager wm = new WindowManager();
wm.StartWin95(opendownload, "Downloader", null, false, true);
opendownload.appName.Text = "Downloading: FTP Client";
}
private void button2_Click(object sender, EventArgs e)
{
WinClassicDownloader opendownload = new WinClassicDownloader();
WindowManager wm = new WindowManager();
wm.StartWin95(opendownload, "Downloader", null, false, true);
opendownload.appName.Text = "Downloading: Web Chat";
}
}
}
|