-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathDockViewRenderMode.cs
More file actions
31 lines (27 loc) · 989 Bytes
/
DockViewRenderMode.cs
File metadata and controls
31 lines (27 loc) · 989 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
// Copyright (c) Argo Zhang (argo@163.com). 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 or https://argozhang.github.io/
namespace BootstrapBlazor.Components;
/// <summary>
/// <para lang="zh">DockViewRenderMode 渲染模式枚举类型</para>
/// <para lang="en">DockViewRenderMode render mode enumeration type</para>
/// </summary>
[JsonEnumConverter(true)]
public enum DockViewRenderMode
{
/// <summary>
/// <para lang="zh">可见时渲染</para>
/// <para lang="en">Render when visible</para>
/// </summary>
OnlyWhenVisible,
/// <summary>
/// <para lang="zh">始终渲染</para>
/// <para lang="en">Always render</para>
/// </summary>
Always,
/// <summary>
/// <para lang="zh">部分渲染 可见版面渲染 不可见版面异步渲染</para>
/// <para lang="en"></para>
/// </summary>
Partial
}