So for my ToDo applications, one of the first task items was being able to change the font color. After reading about this on my trusty WPF advisor blog, I learned you can do direct data bindings with Settings. This is useful since I just have to create the property bind to it, and walk away. The one thing I have to do is just save the properties. Here is the WPF for doing the background binding. Took me a bit to see the error of my ways for binding a background. I had <Button Background=“{Binding …” and this...