vb.net 引用shimgvw.dll模块失败

引用找到system32中的shimgvw.dll失败,想做一个双击picture box出现windows图片查看器的程序

https://www.onlinedown.net/soft/615330.htm
参考一下这个连接试试呢!vb.net已经好多年没用过了。而且微软已经放弃了。不建议在搞vb.net了

想做一个双击picture box出现windows图片查看器的程序

试试以下代码:

    Private Sub PictureBox1_DoubleClick(sender As Object, e As EventArgs) Handles PictureBox1.DoubleClick
        If PictureBox1.ImageLocation IsNot Nothing Then
            Process.Start(PictureBox1.ImageLocation)
        End If
    End Sub