30 lines
966 B
C#
30 lines
966 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Itrycn_Project
|
|
{
|
|
/// <summary>
|
|
/// 配置类,保存在运行期间会被改变的配置信息(本系统基于乘黄V2架构)
|
|
/// </summary>
|
|
public static class Soft_Config
|
|
{
|
|
/// <summary>
|
|
/// 是否能关闭窗体。
|
|
/// </summary>
|
|
public static bool IsCanCloseForm = true;
|
|
/// <summary>
|
|
/// 在点击主窗口关闭按钮时,隐藏窗体(只有开启了托盘图标,本功能才能生效,此时需要通过托盘图标进行关闭)。
|
|
/// </summary>
|
|
public static bool HideByCloseBtn = true;
|
|
public static void LoadSetting()
|
|
{
|
|
//ryCommon.Storage Stor = new Storage();
|
|
//Stor.SelectNodeBySet();
|
|
//LowCountTip = Stor.GetAttrValue("LowCountTip", true);
|
|
//low_count = Stor.GetAttrValue("LowCount", 10);
|
|
}
|
|
}
|
|
}
|