gpt4 book ai didi

c# - 在 WPF 文本框中显示 "current working directory"

转载 作者:太空狗 更新时间:2023-10-30 00:16:09 24 4
gpt4 key购买 nike

谁能告诉我如何使用 C# 和 WPF 在文本框中显示当前工作目录的路径?

我不明白如何绑定(bind)它。

最佳答案

  1. ViewModel/View 的后台代码:

    public string CurrentDirectoryPath
    {
    get
    {
    return Environment.CurrentDirectory;
    }
    }
  2. 在 View 的 XAML 中:

    <TextBox Text="{Binding CurrentDirectoryPath}" />
  3. 设置正确的DataContext

    // If you are using MVVM:
    var view = new MyView { DataContext = new MyViewModel() };

关于c# - 在 WPF 文本框中显示 "current working directory",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8715993/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com