有人能告诉我如何用C和WPF在文本框中显示当前工作目录的路径吗?
我不明白我怎么能和它结合在一起。

最佳答案

在viewmodel/view的代码隐藏中:

public string CurrentDirectoryPath
{
   get
   {
       return Environment.CurrentDirectory;
   }
}

在视图的xaml中:
<TextBox Text="{Binding CurrentDirectoryPath}" />

设置右数据上下文
// If you are using MVVM:
var view = new MyView { DataContext = new MyViewModel() };

10-04 12:03