UWP 028 | XAML Styles

743
0

Up until now, we’ve set the fonts, colors, sizes and more of the XAML controls we’ve used individually one at a time, however in some cases this causes our XAML to be bloated with a lot of repeated markup. However, styles allow us to gather up common settings that we want to apply across many XAML controls on a single page or across the entire app, give them a name, then apply them in a more organized and succinct manner.

Lesson source code: https://github.com/Windows-Readiness/…

Full series source code: https://github.com/Windows-Readiness/…

Previous articleUWP 027 | Canvas and Shapes
Next articleUWP 029 | XAML Themes