Value="{Binding}" 是什么意思?做?

发布于 2024-12-03 22:56:41 字数 522 浏览 0 评论 0 原文

可能的重复:
WPF 绑定语法问题

我一直在到处使用这种语法,我想我知道它做了什么,但现在我不知道了。

Value="{Binding}"

我在网上搜索这个语法时遇到了很大的麻烦,因为当然大括号被忽略了。

例如:

<Style x:Key="GridCell" TargetType="{x:Type TextBlock}">
    <Setter Property="ToolTip" Value="{Binding}}"/>
</Style>

当作为样式应用于文本块时,将工具提示绑定到文本块内容(文本)所绑定到的未格式化(未转换)属性。

Possible Duplicate:
WPF Binding Syntax Question

I've been using this syntax all over the place, and I thought I knew what it did, but now I have no idea.

Value="{Binding}"

I am having huge trouble searching for this syntax online because of course the curly brackets are ignored.

For instance:

<Style x:Key="GridCell" TargetType="{x:Type TextBlock}">
    <Setter Property="ToolTip" Value="{Binding}}"/>
</Style>

When applied as a style to a textblock is binding the tooltip to the unfomatted (unconverted) property that the textblock content (text) is bound to.

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

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

发布评论

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

评论(6

眼泪淡了忧伤 2024-12-10 22:56:41

其数据绑定值到窗口或控件的 DataContext 的根。

Its data binding value to the root of the window or control's DataContext.

零度℉ 2024-12-10 22:56:41

它绑定到当前的数据上下文。

我建议您查看 WPF 数据绑定备忘单。应该是一个方便的参考。

It binds to the current Datacontext.

I suggest you take a look at the WPF Databinding Cheat Sheet. Should be a handy reference.

衣神在巴黎 2024-12-10 22:56:41

语法 {Binding } 创建一个新的 绑定使用绑定标记扩展

具体来说,{Binding} 创建具有空路径的 Binding 对象。由于路径是相对于当前 DataContext 的,这意味着绑定到它。

The syntax {Binding <something>} creates a new Binding using the Binding markup extension.

Specifically, {Binding} creates the Binding object with empty path. And since the paths are relative to the current DataContext, this means binding to it.

慕巷 2024-12-10 22:56:41

文档{Binding}引用为“空绑定语法”。它将属性绑定到 DataContext 引用的整个对象。

可能值得注意的是,控件继承其父元素的 DataContext(除非您直接设置它)。

The documentation refers to {Binding} as the "empty binding syntax". It binds the property to the entire object referenced by the DataContext.

It may be worth noting that a control inherits the DataContext of its parent element (unless you set it directly).

夏雨凉 2024-12-10 22:56:41

这就是 WPF 将数据链接到控件的方式。有关更多详细信息,请参阅 MSDN。 http://msdn.microsoft.com/en-us/library/ms752347.aspx

It is how WPF links your data to the control. See MSDN for more detail. http://msdn.microsoft.com/en-us/library/ms752347.aspx

无言温柔 2024-12-10 22:56:41

这完全取决于您在元素树中的哪个位置使用它。默认情况下,它表示当前的 DataContext。但如果您已经在 ListBox 中,那么这意味着 ListBox 的 DataContext。这与 Root/Main DataContext 不同。

It all depends where in the your Element Tree you are using this. By default it means current DataContext. But if you are already inside your ListBox, then it means ListBox's DataContext. Which is different from Root/Main DataContext.

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