-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathEmbedPDFTheme.cs
More file actions
35 lines (30 loc) · 931 Bytes
/
EmbedPDFTheme.cs
File metadata and controls
35 lines (30 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright (c) BootstrapBlazor & Argo Zhang (argo@live.ca). All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
// Website: https://www.blazor.zone
using System.ComponentModel;
namespace BootstrapBlazor.Components;
/// <summary>
/// <para lang="zh">主题枚举</para>
/// <para lang="en">Theme enumeration</para>
/// </summary>
public enum EmbedPDFTheme
{
/// <summary>
/// <para lang="zh">跟随系统</para>
/// <para lang="en">Follow system</para>
/// </summary>
[Description("system")]
System,
/// <summary>
/// <para lang="zh">明亮模式</para>
/// <para lang="en">Light mode</para>
/// </summary>
[Description("light")]
Light,
/// <summary>
/// <para lang="zh">暗黑模式</para>
/// <para lang="en">Dark mode</para>
/// </summary>
[Description("dark")]
Dark
}