DarkUI-Refit is a fork of the DarkUI WindowsForms library created by RobinPerris
$ dotnet add package DarkUI.RefitImportant: This version includes significant namespace changes that will require code updates when upgrading from previous versions.
As part of a major project cleanup and reorganization, many types have been moved to more logical namespaces. This affects the using statements in your code.
| Type | Old Namespace | New Namespace |
|---|---|---|
DarkButtonStyle | DarkUI.Controls | DarkUI.Data.Enums |
Severity | DarkUI.Controls | DarkUI.Data.Enums |
| Various Enums | DarkUI.Controls | DarkUI.Data.Enums |
| Data Models | DarkUI.Controls | DarkUI.Data.Models |
// Old
using DarkUI.Controls; // for enums
// New
using DarkUI.Controls; // for controls
using DarkUI.Data.Enums; // for enums
using DarkUI.Data.Models; // for data models
Rebuild your project: After updating namespaces, perform a clean rebuild
Check compilation errors: The compiler will identify any remaining namespace issues