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.
如何简单地“将文本块数据绑定到代码隐藏 C# 变量”?
在我的代码隐藏中,我有一个公共字符串变量,在我的 XAML 中我有,但它不起作用。
提前致谢!
使用BindingOperations类。像这样的东西。
BindingOperations
BindingOperations.SetBinding(myTextBlock, TextBlock.TextProperty, new Binding("Whatever"))
在不了解您要绑定的内容的情况下,这是您将获得的最佳答案。
使用真正的 MVVM 模式几乎总是比在代码隐藏中做这种事情要好。