将Silverlight控件绑定到View Model元素?

时间:2011-06-19 15:54:30

标签: silverlight windows-phone-7 wvvm

说我有:

<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,但这是有充分理由的。

1 个答案:

答案 0 :(得分:0)

<ContentControl Content="{Binding TextBlock}" />