📄 pbl.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Qeb.Support.Common
{
/// <summary>
/// PBL列表
/// </summary>
public class PBL
{
private static string m_gypbl = null;
private static string m_mzpbl = "mz.pbl";
private static string m_ykpbl = null;
private PBL()
{
}
public static string GyPbl
{
get
{
if (m_gypbl == null)
{
string m_DataObjectPath = AppConfig.GetValue("DataObjectPath");
m_gypbl = m_DataObjectPath + "gy.pbl;" + m_DataObjectPath + "yk.pbl;" + m_DataObjectPath + "mz.pbl;";
}
return m_gypbl;
}
}
public static string MzPbl
{
get { return AppConfig.GetValue("DataObjectPath") + m_mzpbl; }
}
public static string YkPbl
{
get
{
if (m_ykpbl == null)
{
string m_DataObjectPath = AppConfig.GetValue("DataObjectPath");
m_ykpbl = m_DataObjectPath + "yk.pbl;" + m_DataObjectPath + "gy.pbl;";
}
return m_ykpbl;
}
//get { return AppConfig.GetValue("DataObjectPath") + m_ykpbl; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -