WPF - data binding window title to view model property
问题 I'm trying to bind my window title to a property in my view model, like so: Title="{Binding WindowTitle}" The property looks like this: /// <summary> /// The window title (based on profile name) /// </summary> public string WindowTitle { get { return CurrentProfileName + " - Backup"; } } The CurrentProfileName property is derived from another property (CurrentProfilePath) that is set whenever someone opens or saves profile. On initial startup, the window title is set properly, but when ever