From 4ff438454f2323b69c7cd82da1f79246c3169148 Mon Sep 17 00:00:00 2001 From: Xjph Date: Fri, 4 Jun 2021 16:54:14 -0230 Subject: [PATCH] Added notification window --- .../UI/ViewModels/NotificationViewModel.cs | 3 ++- .../UI/Views/NotificationView.axaml | 26 +++++++++++++++---- .../UI/Views/NotificationView.axaml.cs | 15 +++++++++++ 3 files changed, 38 insertions(+), 6 deletions(-) diff --git a/ObservatoryCore/UI/ViewModels/NotificationViewModel.cs b/ObservatoryCore/UI/ViewModels/NotificationViewModel.cs index 8a3ccf1..8e2da34 100644 --- a/ObservatoryCore/UI/ViewModels/NotificationViewModel.cs +++ b/ObservatoryCore/UI/ViewModels/NotificationViewModel.cs @@ -11,8 +11,9 @@ namespace Observatory.UI.ViewModels public NotificationViewModel(string title, string detail) { Notification = new() { Title = title, Detail = detail }; + } - public Models.NotificationModel Notification; + public Models.NotificationModel Notification { get; set; } } } diff --git a/ObservatoryCore/UI/Views/NotificationView.axaml b/ObservatoryCore/UI/Views/NotificationView.axaml index 0125b59..0af6852 100644 --- a/ObservatoryCore/UI/Views/NotificationView.axaml +++ b/ObservatoryCore/UI/Views/NotificationView.axaml @@ -2,12 +2,28 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" - mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" + mc:Ignorable="d" d:DesignWidth="400" d:DesignHeight="150" x:Class="Observatory.UI.Views.NotificationView" - - Title="Notification"> + ExtendClientAreaToDecorationsHint="True" + Title="Notification" + Width="400" Height="150" + Topmost="True"> - - + + Title + + + Detail + diff --git a/ObservatoryCore/UI/Views/NotificationView.axaml.cs b/ObservatoryCore/UI/Views/NotificationView.axaml.cs index 89bdb28..c1f73fa 100644 --- a/ObservatoryCore/UI/Views/NotificationView.axaml.cs +++ b/ObservatoryCore/UI/Views/NotificationView.axaml.cs @@ -9,11 +9,26 @@ namespace Observatory.UI.Views public NotificationView() { InitializeComponent(); + SystemDecorations = SystemDecorations.None; + var screenBounds = Screens.Primary.Bounds; + Position = screenBounds.BottomRight - new PixelPoint((int)Width, (int)Height); + var timer = new System.Timers.Timer(); + timer.Elapsed += CloseNotification; + timer.Interval = 5000; + timer.Start(); #if DEBUG this.AttachDevTools(); #endif } + private void CloseNotification(object sender, System.Timers.ElapsedEventArgs e) + { + Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(() => + { + Close(); + }); + } + private void InitializeComponent() { AvaloniaXamlLoader.Load(this);