vb.net 怎么双击打开listbox1中被选中的文件需要imports 什么么
时间: 2023-03-06 10:03:38 浏览: 113
当你想在VB.NET中双击打开ListBox1中被选中的文件时,你需要使用Imports System.IO命令来引入System IO的命名空间,然后使用Process.Start(文件路径)来双击打开文件。
相关问题
vb.net 双击listbox1中的路径 打开该路径 怎么写代码
可以使用 ListBox1.SelectedItem.ToString() 来获取路径,然后使用 Process.Start(String) 方法来打开该路径。例如:Process.Start(ListBox1.SelectedItem.ToString())。
vb.net 双击listbox1中的路径 打开该路径 怎么写双击事件的代码
编写双击listbox1中路径的代码可以使用以下代码:Private Sub ListBox1_DoubleClick(sender As Object, e As EventArgs)
'获取双击的路径
Dim path As String = ListBox1.SelectedItem.ToString()
'打开该路径
Process.Start(path)
End Sub
阅读全文