绑定与 PropertyChanged

切换绑定模式并修改 View 或 ViewModel,观察值如何传播。

public string Title
{
    get => _title;
    set => SetProperty(ref _title, value);
}