[求助]Listview的item事件(续)j各位来看看
哎。。。。问题没解决在开一贴。。。。
各位帮帮忙哈。。
对了,那个附件是我的源码,问题就在那个 private void FilesView_ItemActivate(object sender,System.EventArgs e) { try { string FullName=FilesView.SelectedItems [0].Tag.ToString (); if(FilesView.SelectedItems [0].ImageIndex ==1) { MessageBox.Show("这是文本文件");
} else { if(FilesView.SelectedItems [0].ImageIndex==2) System.Diagnostics.Process.Start(FullName); else { txtCurPath.Text=FullName; FillFilesView(FullName); CurPath.Add(FullName); } }
} catch(Exception ex) { MessageBox.Show(ex.Message); }
} 里面没法响应。。