WPF绑定中的特殊符号 – “{Binding Path =。}”是什么意思?
我看到一些人使用它,但在网上找不到任何解释…
你知道的其他特殊符号(Binding /除外)?
这是绑定到当前源的简写。 欲了解更多信息请点击这里
几个月前,我发现这个WPF Binding CheatSheet非常有用,特别是对于任何学习WPF的人来说。 其中有一些拼写错误,但还是相当不错的。
这是一个小的摘录(这应该有表格格式):
Basic Binding {Binding} Bind to current DataContext. {Binding Name} Bind to the “Name” proeprty of the current DataContext. {Bindind Name.Length} Bind to the Length property of the object in the Name property of the current DataContext. {Binding ElementName=SomeTextBox, Path=Text} Bind to the “Text” property of the element XAML element with name=”SomeTextBox” or x:Name=”SomeTextBox”.
直接链接到CheatSheet