如何才能到达位于另一个WPF窗口中的DatePicker的字符串值?
类似的东西(按钮点击):
private void button1_Click(object sender, RoutedEventArgs e)
{
datePicker1.Text = datePickerFromAnotherWindow.Text;//error: the name does not exist in the current context
}
DatePicker来自默认的WPF工具集
答案 0 :(得分:0)
您应该使用具有日期/时间属性的视图模型(使用依赖项属性或INotifyPropertyChanged),以便在一个dt选择器中更新它时,在另一个dt选择器中更新它。这样,数据独立于视图(“窗口”)