Caliburn.Micro and DataGrid: Reliable approach for detecting individual cell changes?
问题 I have an MVVM-based WPF application that relies on Caliburn.Micro . In one view, I am displaying a DataGrid and a Button . The DataGrid displays a collection of items, where the item class derives from PropertyChangedBase . The button should be enabled or disabled based on the contents in the editable DataGrid cells. What is the most reliable approach to achieve this with Caliburn.Micro ? Schematically, this is what my code looks right now: public class ItemViewModel : PropertyChangedBase {