2017-07-07 15:46:32 +02:00
|
|
|
|
/*
|
2019-01-09 11:25:21 +01:00
|
|
|
|
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
|
2017-07-07 15:46:32 +02:00
|
|
|
|
*
|
|
|
|
|
* 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/.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-12 15:36:30 +02:00
|
|
|
|
using System;
|
|
|
|
|
using SafeExamBrowser.Contracts.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace SafeExamBrowser.Browser
|
2017-07-07 15:46:32 +02:00
|
|
|
|
{
|
2017-07-17 16:59:50 +02:00
|
|
|
|
public class BrowserIconResource : IIconResource
|
2017-07-07 15:46:32 +02:00
|
|
|
|
{
|
2019-01-11 15:32:47 +01:00
|
|
|
|
public Uri Uri => new Uri("pack://application:,,,/SafeExamBrowser.UserInterface.Desktop;component/Images/SafeExamBrowser.ico");
|
2017-08-23 08:32:44 +02:00
|
|
|
|
public bool IsBitmapResource => true;
|
|
|
|
|
public bool IsXamlResource => false;
|
2017-07-07 15:46:32 +02:00
|
|
|
|
}
|
|
|
|
|
}
|