我将此代码设置为导航到某个.html文档,具体取决于从ListBox中选择的内容:
Private Sub FileList_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FileList.SelectedIndexChanged
HelpWindow.Navigate(System.AppDomain.CurrentDomain.BaseDirectory & "help\" & fileArray(FileList.SelectedIndex, 1))
End Sub
问题是,当我第一次在ListBox中选择某些内容时,它会成功导航到该文件并显示它。但是当我第二次选择它时它不会改变。
它尝试导航的所有路径都是正确的。我已经检查了1000次。
任何人都有任何线索,为什么这不起作用?
答案 0 :(得分:1)
将WebBrowser控件allownavigation
属性设置为True
。
答案 1 :(得分:0)
检查您是如何加载列表的。我想我已经看到了像这样加载时selectedIndexChanged不会激活:
文字1,价值1
文字2,价值1
文字3,价值1