我在RadGridView中有自己定义的GroupHeaderTemplate
这是图片
代码的一部分在这里:
TextBox Grid.Column="0"
Text="{Binding Group.Items[0].Name, Mode=TwoWay}"
Foreground="#50A0DA"
FontWeight="Bold"
VerticalAlignment="Center"
HorizontalAlignment="Left"
Width="Auto"/>
例如,如果我将测试Levon 编辑为编辑文本,我无法在ViewModel中获取该版本。我怎样才能实现它?有没有办法将编辑后的文本绑定到我的ViewModel中的属性?
P.S。这是一个Silverlight应用程序。