说我有:
<TextBlock Text="{Binding MyString}"/>
public class AlanViewModel {
public string MyString {get; set;}
public TextBlock Control { get; set; } //How to bind this to the TextBlock control?
}
我可以将控件的实例绑定到ViewModel,还是我必须继续跳过代码隐藏中的箍来将它们连接在一起?
我知道这会将ViewModel耦合到View,但这是有充分理由的。
答案 0 :(得分:0)
<ContentControl Content="{Binding TextBlock}" />