3
我有一個像\\machine\share\folder\something\
的UNC路徑,我需要能夠在單擊按鈕時在Windows資源管理器中打開該位置。我應該使用什麼樣的WPF控件,以及如何從viewModel綁定到該控件?如何打開瀏覽器窗口使用WPF按鈕或超鏈接瀏覽給定的UNC路徑?
我的視圖模型的一個例子是:
public class ViewModel : Screen {
public string LogPath { get { return "\\machine\share\folder\something"; } }
}
我使用卡利微,但我不知道這是相關的。