From 410c6afab4044f3a9d34e1b4e94e7b9999073a31 Mon Sep 17 00:00:00 2001 From: jtsshieh Date: Sat, 28 Oct 2017 20:46:42 -0400 Subject: FTP CLient now requires you to double click on the items --- .../OS/Win95/Win95Apps/WinClassicFTPClient.cs | 33 +++++++++++----------- 1 file changed, 17 insertions(+), 16 deletions(-) (limited to 'Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs') diff --git a/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs index 1a0836b..bc28c3a 100644 --- a/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs @@ -56,7 +56,23 @@ namespace Histacom2.OS.Win95.Win95Apps } } - private void ftpItems_Click(object sender, EventArgs e) + + private void btnCancel_Click(object sender, EventArgs e) + { + ParentForm.Close(); + } + + private void WinClassicFTPClient_Load(object sender, EventArgs e) + { + + } + + private void topBar_Paint(object sender, PaintEventArgs e) + { + topBar.BackColor = SaveSystem.currentTheme.threeDObjectsColor; + } + + private void ftpFiles_DoubleClick(object sender, EventArgs e) { Point objDrawingPoint = ftpFiles.PointToClient(Cursor.Position); ListViewItem objListViewItem = new ListViewItem(); @@ -117,20 +133,5 @@ namespace Histacom2.OS.Win95.Win95Apps } } } - - private void btnCancel_Click(object sender, EventArgs e) - { - ParentForm.Close(); - } - - private void WinClassicFTPClient_Load(object sender, EventArgs e) - { - - } - - private void topBar_Paint(object sender, PaintEventArgs e) - { - topBar.BackColor = SaveSystem.currentTheme.threeDObjectsColor; - } } } -- cgit v1.2.3