diff options
| author | FloppyDiskDrive <[email protected]> | 2017-09-11 20:37:33 -0500 |
|---|---|---|
| committer | FloppyDiskDrive <[email protected]> | 2017-09-11 20:37:33 -0500 |
| commit | cb10dfe5c2004580f480f3e84c445fe7877be79b (patch) | |
| tree | 748650f2069861bddb6972ecb39bbea336a816a5 /Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs | |
| parent | 572117a8d2fe2e88ce72ecfbcf55598b02bddd62 (diff) | |
| parent | 584789ed8a37027db496d6c90873186fe461f021 (diff) | |
| download | histacom2-cb10dfe5c2004580f480f3e84c445fe7877be79b.tar.gz histacom2-cb10dfe5c2004580f480f3e84c445fe7877be79b.tar.bz2 histacom2-cb10dfe5c2004580f480f3e84c445fe7877be79b.zip | |
Merge remote-tracking branch 'refs/remotes/Histacom2-Devs/master'
Diffstat (limited to 'Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs')
| -rw-r--r-- | Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs index b6195ae..4dd74fb 100644 --- a/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs @@ -117,12 +117,6 @@ namespace Histacom2.OS.Win95.Win95Apps } } - private void DoClassicButtons() - { - btnLogin.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - btnCancel.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - } - private void btnCancel_Click(object sender, EventArgs e) { ParentForm.Close(); @@ -130,7 +124,12 @@ namespace Histacom2.OS.Win95.Win95Apps private void WinClassicFTPClient_Load(object sender, EventArgs e) { - DoClassicButtons(); + + } + + private void topBar_Paint(object sender, PaintEventArgs e) + { + topBar.BackColor = SaveSystem.currentTheme.threeDObjectsColor; } } } |
