作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想设置InitialDirectory
WindowsAPICodePack CommonOpenFileDialog
的属性(property)至我的电脑位置,我使用了等效的 CLSID 或 GUID 或者这到底是什么,只是我想知道是否存在一种更 native /更安全的方法来正确设置 我的电脑位置,我试过这个但没有奏效:
.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyComputer)
Dim FolderPicker As New Microsoft.WindowsAPICodePack.Dialogs.CommonOpenFileDialog
With FolderPicker
.IsFolderPicker = True
.Title = "Folder Dialog Test"
.InitialDirectory = "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}" ' My Computer
.DefaultFileName = "C:\"
End With
UPDATE:
.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.Desktop)
最佳答案
Environment.GetFolderPath 永远不会返回 MyComputer 的路径,因为它实际上没有路径。
来自 MSDN documentation :
The MyComputer constant always yields the empty string ("") because no path is defined for the My Computer folder.
关于.net - 在 OpenFileDialog (WindowsAPICodePack) 上设置 'My Computer' 位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20866542/
我是一名优秀的程序员,十分优秀!