// *********************************************************************** // Assembly : Construction // Author : flythink // Created : 06-18-2020 // // Last Modified By : flythink // Last Modified On : 09-01-2020 // *********************************************************************** // // Copyright (c) jindongfang. All rights reserved. // // // *********************************************************************** namespace WellWorkDataUI { /// /// Class Constants. /// public static class Constants { /// /// Class LayerGroup. /// public static class LayerGroup { /// /// The big /// public static readonly string Big = "大层"; /// /// The depth /// public static readonly string Depth = "深度层位"; /// /// The depth /// public static readonly string Thickness = "地层厚度"; /// /// The small /// public static readonly string Small = "细分层"; /// /// The time /// public static readonly string Time = "时间层位"; /// /// The Well /// public static readonly string Well = "井位分层"; } /// /// Class xxx. /// public static class Splash { /// /// The data checking /// public static readonly string DataChecking = "数据校验中..."; /// /// The data loading /// public static readonly string DataLoading = "数据加载中..."; /// /// The data saving /// public static readonly string DataSaving = "数据保存中..."; public static readonly string HandleProgress = "当前处理进度:{0}/{1}..."; } /// /// Class StringSplit. /// public static class StringSplit { /// /// The separator /// public static readonly string[] LineSeparator = new[] { "\r\n", "\n" }; /// /// The separator /// public static readonly string[] Separator = new[] { "\r", "\t", "\0", ",", ";", " " }; /// /// The separator /// public static readonly string[] EmptySeparator = new[] { "\r", "\t", "\0", " " }; } } }