23 lines
574 B
C#
23 lines
574 B
C#
using System.Collections.Generic;
|
|
using System.Resources;
|
|
|
|
namespace _1200Gxml心电图绘制
|
|
{
|
|
public class LocalStorage
|
|
{
|
|
/// <summary>
|
|
/// 翻译支持的语言
|
|
/// </summary>
|
|
public static Dictionary<string, string> DClanguage = new Dictionary<string, string>();
|
|
/// <summary>
|
|
/// 当前语言
|
|
/// </summary>
|
|
public static string CurrentLanguage = "zh-CN";
|
|
/// <summary>
|
|
/// 语言资源管理器
|
|
/// </summary>
|
|
public static ResourceManager ResManager;
|
|
|
|
}
|
|
}
|