using Hyperbar.Controls.Windows; namespace Hyperbar.Windows; public class AppConfigurationChangedHandler(DesktopApplicationBar desktopFlyout, AppConfiguration configuration) : INotificationHandler> { public Task Handle(Changed notification, CancellationToken cancellationToken) { desktopFlyout.Placement = configuration.Placement; return Task.CompletedTask; } }