WPF:整个 DataGrid 上的单向绑定

发布于 2024-08-23 03:55:26 字数 37 浏览 7 评论 0原文

有没有一种方法可以将整个 DataGrid 标记为单向绑定?

Is there a way to mark the entire DataGrid as one-way binding?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

静水深流 2024-08-30 03:55:26

您可以创建一个继承绑定的新类,例如 OneWayExtension。

 public class OneWayExtension : Binding
{
    public OneWayExtension()
        : base()
    {
        Initialize();
    }

    public OneWayExtension(string path)
        : base(path)
    {
        Initialize();
    }

    private void Initialize()
    {
        this.Source = YourSourceOrMakeThisAParameter;
        this.Mode = BindingMode.OneWay;
    }
}

然后你可以通过以下方式调用它

{local:OneWay PathOfData}

You can create a new class such as OneWayExtension that inherits binding.

 public class OneWayExtension : Binding
{
    public OneWayExtension()
        : base()
    {
        Initialize();
    }

    public OneWayExtension(string path)
        : base(path)
    {
        Initialize();
    }

    private void Initialize()
    {
        this.Source = YourSourceOrMakeThisAParameter;
        this.Mode = BindingMode.OneWay;
    }
}

You can then call this by

{local:OneWay PathOfData}
一枫情书 2024-08-30 03:55:26

我知道这个问题已经得到解答,但是您不能将 DataGrid 的 ItemsSource 属性上的绑定 Mode 设置为 OneWay 吗?

I know this is already answered, but can't you just set the binding Mode on the DataGrid's ItemsSource property to OneWay?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文