我在视图模型中有一些绑定到我的属性的XAML,但在用户单击“保存”按钮之前,我不想让它们更新。在对MSDN进行一些阅读后,看起来我可以使用BindingGroup.UpdateSources()。但是,我不知道如何为我的XAML获取容器元素,以便我可以同时更新绑定的属性。我的代码背后需要什么?
这是我的XAML:
<DockPanel VerticalAlignment="Stretch" Height="Auto">
<Border DockPanel.Dock="Top" BorderBrush="Black" BorderThickness="2">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Grid.BindingGroup>
<BindingGroup Name="myBindingGroup1">
</BindingGroup>
</Grid.BindingGroup>
<TextBlock Grid.Column="0" Grid.Row="0" Text="Address:" />
<TextBox Grid.Column="1" Grid.Row="0" Text="{Binding myObject.Address, BindingGroupName=myBindingGroup1, UpdateSourceTrigger=Explicit}" />
<TextBlock Grid.Column="0" Grid.Row="1" Text="ID:" />
<TextBox Grid.Column="1" Grid.Row="1" Text="{Binding myObject.ID, BindingGroupName=myBindingGroup1, UpdateSourceTrigger=Explicit}" />
</Grid>
</Border>
<StackPanel Orientation="Horizontal" DockPanel.Dock="Bottom" Height="35" HorizontalAlignment="Center" VerticalAlignment="Bottom">
<Button Content="Save" Command="saveItem" />
</StackPanel>
</DockPanel>
答案 0 :(得分:1)
我不知道绑定组,但我知道如何以另一种方式做到这一点。
在视图模型中拥有一个您正在绑定的对象,并在视图中发生更改时让它更新。在对其进行任何更改之前(例如,在创建它时)在视图模型中创建对象的深层副本(复制实际值,而不仅仅是引用类型的引用)。
当用户按下“保存”按钮时,只需将更改从有界属性传播到副本,并执行您需要执行的操作(存储在db,...中)。如果您对新值不满意,只需从副本中覆盖它们。
如果有界对象是某个模型中的对象,则不要直接将更改传播到模型,请使用一些临时字段。
类似以下示例。
public class MainViewModel : ViewModelBase
{
private PersonModel model;
private Person person;
public Person Person
{
get { return person; }
set { SetField(ref person, value); } // updates the field and raises OnPropertyChanged
}
public ICommand Update { get { return new RelayCommand(UpdatePerson); } }
private void UpdatePerson()
{
if (someCondition)
{
// restore the old values
Person = new Person(model.Person.FirstName, model.Person.LastName, model.Person.Age);
}
// update the model
model.Person = new Person(Person.FirstName, Person.LastName, Person.Age);
}
}