July 2015
Intermediate to advanced
1300 pages
87h 27m
English
One of the biggest benefits of WPF user controls is that their layout is completely customizable. As explained further in the “Introducing Control Templates” section, you can completely redefine their layout and behavior using templates. In some situations, you have multiple controls of the same type and want them to have the same properties. For example, you might want to implement three buttons, with each button having the same width, height, and font as the other ones. To avoid the need of applying the same properties for each control, which can be annoying if you have dozens of controls, you can define a style. A style is an instance of the System.Windows.Style class and enables you to define a set of common properties ...