我有一个显示 observableCollection 人员内容的网格,以及两个显示所选行属性的文本框。如果你愿意的话,一个主细节视图。
将 observablecollection 分配给 datacontext 时,您可以简单地执行以下操作:
<Grid>
<Grid Background="Gray">
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition Height="30"></RowDefinition>
</Grid.RowDefinitions>
<igWPF:XamDataGrid Grid.Row="0" DataSource="{Binding}" IsSynchronizedWithCurrentItem="True" />
<StackPanel Grid.Row="1" Orientation="Horizontal">
<TextBox Height="21" Width="100" Margin="5,0,5,0" Text="{Binding Name}"></TextBox>
<TextBox Height="21" Width="100" Text="{Binding Age}"></TextBox>
</StackPanel>
</Grid>
</Grid>
IsSynchronizedWithCurrentItem 属性确保网格中的选定项目是在文本框中处理的项目。
我想知道当 observablecollection 不直接在数据上下文中,而是位于视图模型(分配给窗口的数据上下文)中时,是否可以执行此操作。
public class TestViewModel: DependencyObject
{
public TestViewModel(){
Results = new ObservableCollection<Person>();
Results.Add(new Person { Age = "23", Name = "Able" });
Results.Add(new Person { Age = "25", Name = "Baker" });
}
public ObservableCollection<TagDlgmtEntity> Results
{
get { return (ObservableCollection<Person>)GetValue(ResultsProperty); }
set { SetValue(ResultsProperty, value); }
}
public static readonly DependencyProperty ResultsProperty =
DependencyProperty.Register("Results", typeof(ObservableCollection<Person>), typeof(TestViewModel), new PropertyMetadata(null));
}
我不想重新分配可视树中较低级别的数据上下文,或者与网格的 selectedItem 属性绑定。
是否有可能以这种方式使用这种机制?
谢谢!