------ #### VSoft V1.0.2102.2801 - *.[新增]项目支持毕方3.0标准。 - *.[新增]项目新增支持条件编译,可以自由根据条件编译成公司项目或工作室项目。 - *.[改进]对话框弹出默认在父窗体中间。
67 lines
1.9 KiB
C#
67 lines
1.9 KiB
C#
using ryCommon;
|
|
using ryCommonDb;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using static ryCommonDb.DataProvider;
|
|
|
|
namespace VSoft.Config
|
|
{
|
|
/// <summary>
|
|
/// 配置类,保存在运行期间不会被改变的配置信息(本系统基于乘黄V2架构)
|
|
/// </summary>
|
|
public static class Soft_Info
|
|
{
|
|
/// <summary>
|
|
/// 在线升级配置文件的url
|
|
/// </summary>
|
|
public const string Update_Url = "http://www.itrycn.com/update/vsoft.xml";
|
|
/// <summary>
|
|
/// 软件标题
|
|
/// </summary>
|
|
public const string Soft_Title = "VSoft 快速启动";
|
|
/// <summary>
|
|
/// 软件ID
|
|
/// </summary>
|
|
public const string Soft_Id = "VSoft";
|
|
/// <summary>
|
|
/// 开机启动的参数
|
|
/// </summary>
|
|
public const string Soft_Pram = "q";
|
|
/// <summary>
|
|
/// 官网地址
|
|
/// </summary>
|
|
#if DY
|
|
public const string Soft_Url = "http://www.3h3.com";
|
|
#else
|
|
public const string Soft_Url = "http://www.itrycn.com";
|
|
#endif
|
|
/// <summary>
|
|
/// 售后QQ群
|
|
/// </summary>
|
|
#if DY
|
|
public const string QQ_Qun = "暂无";
|
|
#else
|
|
public const string QQ_Qun = "183161992";
|
|
#endif
|
|
/// <summary>
|
|
/// 关于界面内容.
|
|
/// </summary>
|
|
public const string AboutText = "#softname# #ver# 是一款完全免费的快速启动软件。";
|
|
/// <summary>
|
|
/// 用户文件夹,该相对路径设置,将在程序启动后转换
|
|
/// </summary>
|
|
public static string UserDataFolder = @"<app>\UserDb";
|
|
/// <summary>
|
|
/// 是否允许显示托盘图标
|
|
/// </summary>
|
|
public static bool ShowTray { get; } = true;
|
|
/// <summary>
|
|
/// 是否显示捐赠方式
|
|
/// </summary>
|
|
public static bool DonateVisabled { get; } = true;
|
|
}
|
|
}
|