Static property not updating in UI
问题 I spent the last hour(s) trying to find an answer in google and stackoverflow. I followed different advices & suggestions, but nothing worked so far. My current code looks like this: public class GlobalManager : ViewModelBase { static object _LockObject_GFS = new object(); static double _GlobalFontSize; public static double GlobalFontSize { get { lock (_LockObject_GFS) { _GlobalFontSize = GetGlobalResource<double>(LambdaHelper.MemberToString(() => GlobalFontSize)); return _GlobalFontSize; } }