diff options
| author | lempamo <[email protected]> | 2017-07-04 10:59:08 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-07-04 10:59:08 -0400 |
| commit | e78e3c864d9e61b460a5c42d92651d78ed22a78e (patch) | |
| tree | e098f905452ce34c3dd5fe245f216726dbd07f11 /TimeHACK.Main/OS/Win95/Win95Apps | |
| parent | d6ea0813da443a0e6a56b24ed2019fb9fc384735 (diff) | |
| download | histacom2-e78e3c864d9e61b460a5c42d92651d78ed22a78e.tar.gz histacom2-e78e3c864d9e61b460a5c42d92651d78ed22a78e.tar.bz2 histacom2-e78e3c864d9e61b460a5c42d92651d78ed22a78e.zip | |
Made Start Menus look nicer
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.Designer.cs | 2 | ||||
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.Designer.cs index 11bb4d3..3cc9ad9 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.Designer.cs @@ -117,7 +117,7 @@ this.diskView.Size = new System.Drawing.Size(213, 444); this.diskView.TabIndex = 13; this.diskView.Visible = true; - this.diskView.DoubleClick += new System.EventHandler(this.diskView_DoubleClick); + this.diskView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(diskView_AfterSelect); // // MenuStrip1 // diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs index 91b88f5..e4f98ff 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs @@ -32,9 +32,6 @@ namespace TimeHACK.OS.Win95.Win95Apps InitializeComponent(); } - - - //'Private Sub TreeView1_AfterSelect(ByVal sender As System.Object, ByVal e As System.Windows.Forms.TreeViewEventArgs) //' mainView.Items.Clear() //' Dim childamount As TreeNodeCollection @@ -514,7 +511,7 @@ namespace TimeHACK.OS.Win95.Win95Apps } } - void diskView_DoubleClick(object sender, EventArgs e) + void diskView_AfterSelect(object sender, EventArgs e) { try { |
