diff --git a/SafeExamBrowser.Core/Notifications/LogNotificationIconResource.cs b/SafeExamBrowser.Core/Notifications/LogNotificationIconResource.cs index 816da06b..58a9b233 100644 --- a/SafeExamBrowser.Core/Notifications/LogNotificationIconResource.cs +++ b/SafeExamBrowser.Core/Notifications/LogNotificationIconResource.cs @@ -13,7 +13,7 @@ namespace SafeExamBrowser.Core.Notifications { class LogNotificationIconResource : IIconResource { - public Uri Uri => new Uri("pack://application:,,,/SafeExamBrowser.UserInterface.Windows10;component/Images/LogNotification.ico"); + public Uri Uri => new Uri("pack://application:,,,/SafeExamBrowser.UserInterface.Classic;component/Images/LogNotification.ico"); public bool IsBitmapResource => true; public bool IsXamlResource => false; } diff --git a/SafeExamBrowser.UserInterface.Classic/AboutWindow.xaml b/SafeExamBrowser.UserInterface.Classic/AboutWindow.xaml new file mode 100644 index 00000000..f3724da4 --- /dev/null +++ b/SafeExamBrowser.UserInterface.Classic/AboutWindow.xaml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + This application is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed + with this application, You can obtain one at http://mozilla.org/MPL/2.0/. + + + CefSharp (.NET bindings for the Chromium Embedded Framework) + + Copyright © 2010-2017 The CefSharp Authors. All rights reserved. + + + CEF (Chromium Embedded Framework) + + Copyright © 2008-2014 Marshall A. Greenblatt. Portions Copyright © 2006-2009 Google Inc. All rights reserved. + + + + diff --git a/SafeExamBrowser.UserInterface.Classic/AboutWindow.xaml.cs b/SafeExamBrowser.UserInterface.Classic/AboutWindow.xaml.cs new file mode 100644 index 00000000..ecb75591 --- /dev/null +++ b/SafeExamBrowser.UserInterface.Classic/AboutWindow.xaml.cs @@ -0,0 +1,52 @@ +/* + * Copyright (c) 2017 ETH Zürich, Educational Development and Technology (LET) + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +using System.Windows; +using System.Windows.Documents; +using SafeExamBrowser.Contracts.Configuration.Settings; +using SafeExamBrowser.Contracts.I18n; +using SafeExamBrowser.Contracts.UserInterface; + +namespace SafeExamBrowser.UserInterface.Classic +{ + public partial class AboutWindow : Window, IWindow + { + private ISettings settings; + private IText text; + private WindowClosingEventHandler closing; + + event WindowClosingEventHandler IWindow.Closing + { + add { closing += value; } + remove { closing -= value; } + } + + public AboutWindow(ISettings settings, IText text) + { + this.settings = settings; + this.text = text; + + InitializeComponent(); + InitializeAboutWindow(); + } + + public void BringToForeground() + { + Activate(); + } + + private void InitializeAboutWindow() + { + Closing += (o, args) => closing?.Invoke(); + VersionInfo.Inlines.Add(new Run($"{text.Get(TextKey.Version)} {settings.ProgramVersion}") { FontStyle = FontStyles.Italic }); + VersionInfo.Inlines.Add(new LineBreak()); + VersionInfo.Inlines.Add(new LineBreak()); + VersionInfo.Inlines.Add(new Run(settings.ProgramCopyright) { FontSize = 10 }); + } + } +} diff --git a/SafeExamBrowser.UserInterface.Classic/Controls/NotificationButton.xaml b/SafeExamBrowser.UserInterface.Classic/Controls/NotificationButton.xaml index 69048230..8d405715 100644 --- a/SafeExamBrowser.UserInterface.Classic/Controls/NotificationButton.xaml +++ b/SafeExamBrowser.UserInterface.Classic/Controls/NotificationButton.xaml @@ -4,8 +4,8 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:SafeExamBrowser.UserInterface.Classic.Controls" - mc:Ignorable="d" d:DesignHeight="40" d:DesignWidth="28"> + mc:Ignorable="d" d:DesignHeight="40" d:DesignWidth="40"> -