123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- using System.Reactive;
- using Avalonia.Controls;
- using Avalonia.Controls.ApplicationLifetimes;
- using Avalonia.Controls.Notifications;
- using Avalonia.Dialogs;
- using Avalonia.Platform;
- using System;
- using ReactiveUI;
- namespace ControlCatalog.ViewModels
- {
- class MainWindowViewModel : ReactiveObject
- {
- private IManagedNotificationManager _notificationManager;
- private bool _isMenuItemChecked = true;
- private WindowState _windowState;
- private WindowState[] _windowStates;
- public MainWindowViewModel(IManagedNotificationManager notificationManager)
- {
- _notificationManager = notificationManager;
- ShowCustomManagedNotificationCommand = ReactiveCommand.Create(() =>
- {
- NotificationManager.Show(new NotificationViewModel(NotificationManager) { Title = "Hey There!", Message = "Did you know that Avalonia now supports Custom In-Window Notifications?" });
- });
- ShowManagedNotificationCommand = ReactiveCommand.Create(() =>
- {
- NotificationManager.Show(new Avalonia.Controls.Notifications.Notification("Welcome", "Avalonia now supports Notifications.", NotificationType.Information));
- });
- ShowNativeNotificationCommand = ReactiveCommand.Create(() =>
- {
- NotificationManager.Show(new Avalonia.Controls.Notifications.Notification("Error", "Native Notifications are not quite ready. Coming soon.", NotificationType.Error));
- });
- AboutCommand = ReactiveCommand.CreateFromTask(async () =>
- {
- var dialog = new AboutAvaloniaDialog();
- var mainWindow = (App.Current.ApplicationLifetime as IClassicDesktopStyleApplicationLifetime)?.MainWindow;
- await dialog.ShowDialog(mainWindow);
- });
- ExitCommand = ReactiveCommand.Create(() =>
- {
- (App.Current.ApplicationLifetime as IClassicDesktopStyleApplicationLifetime).Shutdown();
- });
- ToggleMenuItemCheckedCommand = ReactiveCommand.Create(() =>
- {
- IsMenuItemChecked = !IsMenuItemChecked;
- });
- WindowState = WindowState.Normal;
- WindowStates = new WindowState[]
- {
- WindowState.Minimized,
- WindowState.Normal,
- WindowState.Maximized,
- WindowState.FullScreen,
- };
- this.WhenAnyValue(x => x.SystemChromeButtonsEnabled, x=>x.ManagedChromeButtonsEnabled, x => x.SystemTitleBarEnabled)
- .Subscribe(x =>
- {
- ChromeHints = ExtendClientAreaChromeHints.NoChrome | ExtendClientAreaChromeHints.OSXThickTitleBar;
- if(x.Item2)
- {
- ChromeHints |= ExtendClientAreaChromeHints.ManagedChromeButtons;
- }
- if(x.Item3)
- {
- ChromeHints |= ExtendClientAreaChromeHints.SystemTitleBar;
- }
- });
- SystemTitleBarEnabled = true;
- SystemChromeButtonsEnabled = true;
- TitleBarHeight = -1;
- }
- private int _transparencyLevel;
- public int TransparencyLevel
- {
- get { return _transparencyLevel; }
- set { this.RaiseAndSetIfChanged(ref _transparencyLevel, value); }
- }
- private ExtendClientAreaChromeHints _chromeHints;
- public ExtendClientAreaChromeHints ChromeHints
- {
- get { return _chromeHints; }
- set { this.RaiseAndSetIfChanged(ref _chromeHints, value); }
- }
- private bool _extendClientAreaEnabled;
- public bool ExtendClientAreaEnabled
- {
- get { return _extendClientAreaEnabled; }
- set { this.RaiseAndSetIfChanged(ref _extendClientAreaEnabled, value); }
- }
- private bool _systemTitleBarEnabled;
- public bool SystemTitleBarEnabled
- {
- get { return _systemTitleBarEnabled; }
- set { this.RaiseAndSetIfChanged(ref _systemTitleBarEnabled, value); }
- }
- private bool _systemChromeButtonsEnabled;
- public bool SystemChromeButtonsEnabled
- {
- get { return _systemChromeButtonsEnabled; }
- set { this.RaiseAndSetIfChanged(ref _systemChromeButtonsEnabled, value); }
- }
- private bool _managedChromeButtonsEnabled;
- public bool ManagedChromeButtonsEnabled
- {
- get { return _managedChromeButtonsEnabled; }
- set { this.RaiseAndSetIfChanged(ref _managedChromeButtonsEnabled, value); }
- }
- private double _titleBarHeight;
- public double TitleBarHeight
- {
- get { return _titleBarHeight; }
- set { this.RaiseAndSetIfChanged(ref _titleBarHeight, value); }
- }
- public WindowState WindowState
- {
- get { return _windowState; }
- set { this.RaiseAndSetIfChanged(ref _windowState, value); }
- }
- public WindowState[] WindowStates
- {
- get { return _windowStates; }
- set { this.RaiseAndSetIfChanged(ref _windowStates, value); }
- }
- public IManagedNotificationManager NotificationManager
- {
- get { return _notificationManager; }
- set { this.RaiseAndSetIfChanged(ref _notificationManager, value); }
- }
- public bool IsMenuItemChecked
- {
- get { return _isMenuItemChecked; }
- set { this.RaiseAndSetIfChanged(ref _isMenuItemChecked, value); }
- }
- public ReactiveCommand<Unit, Unit> ShowCustomManagedNotificationCommand { get; }
- public ReactiveCommand<Unit, Unit> ShowManagedNotificationCommand { get; }
- public ReactiveCommand<Unit, Unit> ShowNativeNotificationCommand { get; }
- public ReactiveCommand<Unit, Unit> AboutCommand { get; }
- public ReactiveCommand<Unit, Unit> ExitCommand { get; }
- public ReactiveCommand<Unit, Unit> ToggleMenuItemCheckedCommand { get; }
- }
- }
|