1

说我有:

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

4

1 回答 1

0
<ContentControl Content="{Binding TextBlock}" />
于 2011-06-19T15:57:53.393 回答