### Install MCSkinn via Microsoft Store Source: https://github.com/inkore-net/documentation/blob/main/data/docs/mcskinn/02. Instructions to install MCSkinn directly from the Microsoft Store. This is the recommended method due to the unavailability of the iNKORE Hub. ```html ``` -------------------------------- ### Install iNKORE.UI.WPF.Modern Package Source: https://github.com/inkore-net/documentation/blob/main/data/docs/ui-wpf-modern/02. Instructions for installing the iNKORE.UI.WPF.Modern and iNKORE.UI.WPF packages via the NuGet Package Manager in Visual Studio. ```C# Install-Package iNKORE.UI.WPF.Modern Install-Package iNKORE.UI.WPF ``` -------------------------------- ### Download iNKORE Hub Source: https://github.com/inkore-net/documentation/blob/main/data/docs/mcskinn/02. Provides a link to download the iNKORE Hub, which was previously used for installing MCSkinn. Users are advised to use the Microsoft Store if the Hub is unavailable. ```html [Download iNKORE Hub](https://inkore.net/hub-windows) ``` -------------------------------- ### Project Configuration for .NET Framework Source: https://github.com/inkore-net/documentation/blob/main/data/docs/ui-wpf-modern/02. Ensures the target framework is .NET Framework 4.6.2 or higher for compatibility with iNKORE.UI.WPF.Modern. ```XML net462 ``` -------------------------------- ### File Structure Example Source: https://github.com/inkore-net/documentation/blob/main/CONTRIBUTING.en-US.md Illustrates the recommended directory structure for organizing resource files, including a `.unused` directory for original uncompressed files. ```plaintext launcher-home/ ├── .unused/ │ ├── launcher-home.png ├── launcher-home.jpg ├── index.en-US.mdx ├── ... ``` -------------------------------- ### Project Configuration for .NET Core Source: https://github.com/inkore-net/documentation/blob/main/data/docs/ui-wpf-modern/02. Ensures the target framework is .NET 6.0 or higher and sets the Target OS Version for theme syncing. Recommended Target OS Version is '10.0.18362.0' or higher. ```XML net6.0 10.0.18362.0 ``` -------------------------------- ### Resource File Compression Example Source: https://github.com/inkore-net/documentation/blob/main/CONTRIBUTING.zh-CN.md Shows the recommended directory structure for managing image assets, including a `.unused` folder for original, uncompressed files, to comply with size limitations. ```plaintext launcher-home/ ├── .unused/ │ ├── launcher-home.png ├── launcher-home.jpg ├── index.en-US.mdx ├── ... ``` -------------------------------- ### Date and Time Formatting Examples Source: https://github.com/inkore-net/documentation/blob/main/CONTRIBUTING.en-US.md Demonstrates correct and incorrect formatting for dates and times, emphasizing the use of MM/dd/yyyy for short dates and 24-hour clock for time. ```md Avoid writing like this: ```md 2024.5.2 4:08 | 2nd May 2024 | 2024年5月2日下午4点8分 我买了34个苹果(是红的)和1只鸡【不知道是公鸡 / 还是 / 母鸡】。 ``` Instead, write like this for better readability: ```md 05/02/2024 16:08 | May 2nd, 2024 | 5 月 2 日 2024 年,16:08 我买了 34 个苹果 (是红的) 和 1 只鸡 [不知道是公鸡/还是/母鸡]。 ``` ``` -------------------------------- ### Apply Modern Window Style and Backdrop Source: https://github.com/inkore-net/documentation/blob/main/data/docs/ui-wpf-modern/02. This snippet demonstrates how to apply a modern style to the main window and set a system backdrop type using attached properties in `MainWindow.xaml`. It requires adding the modern UI namespace. ```xml