WPF Parent Binding
WPF Parent Binding DateTemplate 내부의 액션으로 부모단의 팝업 Property 를 변경하는 방법입니다.ItemModel.csnamespace Wpf.ParentBindingTest{ public class ItemModel { public string? Name { get; set; } public double Value { get; set; } }}MainViewModel.csusing System.Collections.ObjectModel;using System.ComponentModel;using System.Drawing;using System.Runtime.CompilerServices;namespace Wpf.ParentBind..