Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
DataContext="{Binding}"我在一些我继承的 xaml 代码中发现了好几次。
DataContext="{Binding}"
我是否遗漏了某些东西,或者它真的充其量是无用的?
谢谢
DataContext="{Binding}"没用。 但这并不意味着这{Binding}通常是无用的。对于其他属性,使用它非常好。
{Binding}
例子:
<ListBox ItemsSource="{Binding}" />
这会将数据上下文绑定为列表框项目的源。显然,数据上下文应该是某种列表。