### Install and Configure HandyControl Source: https://context7.com/handyorg/handycontrol/llms.txt This snippet demonstrates how to install the library via NuGet and register the necessary resource dictionaries in App.xaml to enable global styling and themes. ```xml ``` -------------------------------- ### Install NexT Theme via Git Source: https://github.com/handyorg/handycontrol/blob/master/doc/themes/next/README.md Commands to navigate to the Hexo themes directory and clone the NexT repository to install the theme. ```shell $ cd hexo $ git clone https://github.com/theme-next/hexo-theme-next themes/next ``` -------------------------------- ### Install HandyControl via NuGet Source: https://github.com/handyorg/handycontrol/blob/master/README.md The command to install the HandyControl package into your .NET project using the NuGet Package Manager Console. ```powershell Install-Package HandyControl ``` -------------------------------- ### Implement Pagination Control in WPF Source: https://context7.com/handyorg/handycontrol/llms.txt Demonstrates how to integrate the Pagination control for large data sets. Includes examples for basic navigation, jump-to-page functionality, and data binding with C# event handling. ```xml ``` ```csharp private void Pagination_PageUpdated(object sender, HandyControl.Data.FunctionEventArgs e) { int newPageIndex = e.Info; LoadDataForPage(newPageIndex); } ``` -------------------------------- ### Drawer Component Examples (XAML) Source: https://context7.com/handyorg/handycontrol/llms.txt Illustrates the usage of the Drawer component for creating slide-out panels. This example showcases different docking positions (Left, Right, Bottom), show modes (Push), and mask behaviors (configurable closeability and visibility). It includes toggle buttons to control drawer visibility. ```XAML