What problem does it solve? Standard System.Windows.Forms.MessageBox ignores DarkMode and the application font, producing unthemed dialogs in WARP WinForms apps. This Skill guides you to replace MessageBox with WarpToolkit.WinForms FluentMessageBox so dialogs automatically respect DarkMode, app fonts, and Per-Monitor-V2 DPI scaling. ## Core Features & Use Cases - Drop-in MessageBox replacement: Show themed messages and confirmations via static FluentMessageBox.Show overloads with text, caption, buttons, icon, and default button parameters. - Custom dialog hosting: Construct FluentMessageBoxForm directly when you need to host or customize the message dialog, including async ShowDialogAsync support. - MVVM guidance: Route ViewModel-originated dialogs through IDialogService instead of calling the static API, keeping logic testable. - Use Case: When adding an "unsaved changes" confirmation to a WARP settings form, use FluentMessageBox.Show with YesNoCancel buttons so the dialog matches the app's DarkMode theme without manual styling. ## Quick Start Ask the AI to replace a MessageBox.Show call in your WinForms code with WarpToolkit.WinForms FluentMessageBox.Show using the same text, caption, buttons, and icon arguments.