Chapter 5: Exploring WinUI Controls
WinUI offers a number of controls and APIs for developers building apps for Windows. The controls include new controls not previously available to Windows developers, as well as updated controls that were already available in WinUI 2.x or UWP. Using these new and updated controls with WinUI 3 enables their use in older versions of Windows 10 that did not previously support this full suite of components. Developers can also leverage XamlDirect APIs to get low-level access to XAML APIs.
In this chapter, we will cover the following topics:
- Learning more about the controls that are available in WinUI
- Exploring the XAML Controls Gallery application to learn about the WinUI controls
- How the XamlDirect APIs provide middleware authors with a performant way to declaratively create and manipulate XAML types in their code
- How to implement the
SplitButton
andTeachingTip
controls in your application
By the end of this chapter, you...