aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs
diff options
context:
space:
mode:
authorjtsshieh <[email protected]>2017-10-28 20:46:42 -0400
committerjtsshieh <[email protected]>2017-10-28 20:46:42 -0400
commit410c6afab4044f3a9d34e1b4e94e7b9999073a31 (patch)
tree96816ab7195cdeed634783e95018a0bd2dd653e8 /Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs
parent9b1e869f9cddba3ae868071094a41306c38038f9 (diff)
downloadhistacom2-410c6afab4044f3a9d34e1b4e94e7b9999073a31.tar.gz
histacom2-410c6afab4044f3a9d34e1b4e94e7b9999073a31.tar.bz2
histacom2-410c6afab4044f3a9d34e1b4e94e7b9999073a31.zip
FTP CLient now requires you to double click on the items
Diffstat (limited to 'Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs')
-rw-r--r--Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs33
1 files changed, 17 insertions, 16 deletions
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;
- }
}
}