You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
3.0 KiB
C#

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