我有一个 UNC 路径\\machine\share\folder\something\
,当单击按钮时,我需要能够在 Windows 资源管理器中打开该位置。我应该使用什么 WPF 控件以及如何从我的 viewModel 绑定到该控件?
我的 viewModel 的一个例子是:
public class ViewModel : Screen {
public string LogPath { get { return "\\machine\share\folder\something"; } }
}
我正在使用 Caliburn Micro,但我不知道这是否相关。