In this section, we will take a look at how to update the user interface for our WalksEntryPage, to apply Implicit Styles to each of the XAML element controls that are of the same type without requiring each control to reference the style.
Implicit Styles are very different from Global and Explicit Styles, as they don't require you to specify the x:Key declaration attribute. The Style will then be applied to all visual elements that match the TargetType, as we will see in this section.
Let's start by updating the user interface for our WalkTrailInfoPage by performing the following steps:
- Locate and open the WalkTrailInfoPage.xaml file, which is located in the Views folder, ensure that ...