Adding settings class to a UWP app
I'm developing a Universal Windows Platform app but there is no Settings template in Visual Studio. How can I implement an easy, strongly typed and observable class that stores my settings in LocalSettings or RoamingSettings? Create a new class inheriting from ObservableSettings. Call to the base class constructor indicating if you want to store the settings in LocalSettings or in RoamingSettings . Add all your properties calling the base class members Set and Get in the getter and in the setter. No need to pass the name of the property or use nameof() operator! Optionally you can set a