我在 WPF 中有一个 ContentControl,其中包含一些输入控件,例如 TextBoxes 和 ComboBoxes。这些控件中的每一个都数据绑定到 ViewModel 中的给定属性,使用UpdateSourceTrigger=Explicit
.
当我单击某个“提交”按钮时,我想遍历每个FormularioPaciente
具有绑定的子项,并调用UpdateSource
:
private void btnSalvarEditarPaciente_Click(object sender, System.Windows.RoutedEventArgs e) {
foreach (var childControl in LogicalTreeHelper.GetChildren(FormularioPaciente)) {
// what should I do now?
// I would really like to "auto-find" everything that should be updated...
}
}