2017-07-07 15:46:32 +02:00
|
|
|
|
/*
|
2023-03-08 00:30:20 +01:00
|
|
|
|
* Copyright (c) 2023 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;
|
|
|
|
|
|
2021-03-18 23:12:07 +01:00
|
|
|
|
namespace SafeExamBrowser.Core.Contracts.Resources.Icons
|
2017-07-07 15:46:32 +02:00
|
|
|
|
{
|
2018-03-06 11:38:12 +01:00
|
|
|
|
/// <summary>
|
2019-12-03 15:43:48 +01:00
|
|
|
|
/// Defines an icon resource which consists of XAML markup (i.e. vector graphics).
|
2018-03-06 11:38:12 +01:00
|
|
|
|
/// </summary>
|
2019-12-03 15:43:48 +01:00
|
|
|
|
public class XamlIconResource : IconResource
|
2017-07-07 15:46:32 +02:00
|
|
|
|
{
|
2017-07-12 15:36:30 +02:00
|
|
|
|
/// <summary>
|
2019-12-03 15:43:48 +01:00
|
|
|
|
/// The <see cref="System.Uri"/> pointing to the XAML file.
|
2017-07-12 15:36:30 +02:00
|
|
|
|
/// </summary>
|
2019-11-06 08:45:37 +01:00
|
|
|
|
public Uri Uri { get; set; }
|
2017-07-07 15:46:32 +02:00
|
|
|
|
}
|
|
|
|
|
}
|