diff options
| author | lempamo <[email protected]> | 2017-10-28 20:00:14 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-10-28 20:00:14 -0500 |
| commit | b2e99d751dd7417599212df04c74cdeb60c6453e (patch) | |
| tree | 0c3892ecc10e96943621419924fa717a5fdd0a6d /Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs | |
| parent | 8501b2ff1483efc270216ec33fd93abccdb66253 (diff) | |
| parent | 5a87139ba9f8ad29b7c3e8c0d4249e149e1eebd0 (diff) | |
| download | histacom2-b2e99d751dd7417599212df04c74cdeb60c6453e.tar.gz histacom2-b2e99d751dd7417599212df04c74cdeb60c6453e.tar.bz2 histacom2-b2e99d751dd7417599212df04c74cdeb60c6453e.zip | |
Merge pull request #172 from jtsshieh/master
Fixing bugs part 1
Diffstat (limited to 'Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs')
| -rw-r--r-- | Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs | 33 |
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; - } } } |
