Refactor UI event handlers to a new module

Moves all UI event handling logic from the initialization script into a new, dedicated module `FFUUI.Core.Handlers.psm1`.

This change improves code organization and separation of concerns by centralizing event handler registration.
This commit is contained in:
rbalsleyMSFT
2025-06-17 18:39:10 -07:00
parent 6bf38d369b
commit de0e014e50
3 changed files with 313 additions and 311 deletions
@@ -73,6 +73,7 @@ NestedModules = @('FFUUI.Core.Applications.psm1',
'FFUUI.Core.Drivers.HP.psm1',
'FFUUI.Core.Drivers.Lenovo.psm1',
'FFUUI.Core.Drivers.Microsoft.psm1',
'FFUUI.Core.Handlers.psm1',
'FFUUI.Core.Initialize.psm1',
'FFUUI.Core.Shared.psm1',
'FFUUI.Core.WindowsSettings.psm1',