Chapter 3, XAML and Fluent C#
- XAML is a markup language based on XML.
- XAML is used in .NET MAUI for declaring layouts and controls.
- Rather than writing in XAML, you can create your layouts and controls in C#.
- We nest a layout or a control inside a layout by using the
Children
property. - An event handler is a method that is registered to an event in the UI.
- The event handler is in the code-behind.