WPF 绑定到另一个元素的 ViewModel

发布于 2024-10-31 12:30:48 字数 267 浏览 0 评论 0原文

只是一个例子。 CustomControl 有一个 ViewModel,其属性名为“Test”

我如何将文本框绑定到该特定属性? 你能访问兄弟ViewModel吗?

<TextBox Text="{Binding ElementName=myControl, Path=ViewModel.Test}"></TextBox>
<Controls:CustomControl x:Name="myControl" />

Just an example. The CustomControl has a ViewModel with a property called "Test"

How could I bind the textbox to that specific property?
Can you access the siblings ViewModel?

<TextBox Text="{Binding ElementName=myControl, Path=ViewModel.Test}"></TextBox>
<Controls:CustomControl x:Name="myControl" />

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

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

发布评论

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

评论(2

你列表最软的妹 2024-11-07 12:30:48

Siblings ViewModel 将在其 DataContext 中尝试

<TextBox Text="{Binding ElementName=myControl, Path=DataContext.Test}"></TextBox>
<Controls:CustomControl x:Name="myControl" />

Siblings ViewModel would be in its DataContext try

<TextBox Text="{Binding ElementName=myControl, Path=DataContext.Test}"></TextBox>
<Controls:CustomControl x:Name="myControl" />
自我难过 2024-11-07 12:30:48

可能这就是您所需要的 -

<TextBox Text="{Binding Source={x:Static local:VieModel}, Path=Test}"></TextBox>
<Controls:CustomControl x:Name="myControl" />

不要忘记添加标记扩展以包含您的类 Viewmodel 所在的命名空间 - xmlns:local="clr-namespace:ViewModel NameSpace"

May be this is what you required-

<TextBox Text="{Binding Source={x:Static local:VieModel}, Path=Test}"></TextBox>
<Controls:CustomControl x:Name="myControl" />

Don't forgot to add the markup extension to include the namespace where your class Viewmodel exists - xmlns:local="clr-namespace:ViewModel NameSpace"

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