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.
54 lines
1.1 KiB
C#
54 lines
1.1 KiB
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PrintBarCode.Helper
|
|
{
|
|
/// <summary>
|
|
/// 系统配置
|
|
/// </summary>
|
|
public sealed class DebugConfig
|
|
{
|
|
private static IniHelper iniHelper = new IniHelper(System.Environment.CurrentDirectory + "/config/App.InI");
|
|
|
|
|
|
private static readonly Lazy<DebugConfig> lazy = new Lazy<DebugConfig>(() => new DebugConfig());
|
|
public static DebugConfig Instance
|
|
{
|
|
get
|
|
{
|
|
return lazy.Value;
|
|
}
|
|
}
|
|
|
|
public DebugConfig()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
//打印机名称
|
|
/// </summary>
|
|
public string PrintName
|
|
{
|
|
get { return iniHelper.IniReadValue("system", "PrintName"); }
|
|
set { iniHelper.IniWriteValue("system", "PrintName", value); }
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
//所在电脑IP
|
|
/// </summary>
|
|
public string IP
|
|
{
|
|
get { return iniHelper.IniReadValue("system", "IP"); }
|
|
set { iniHelper.IniWriteValue("system", "IP", value); }
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|