### MyHouse V1.0.2502.0801 - *.[新增]适配新版接口。 ### SmartHouseAPI V1.0.2502.0801 - *.[新增]支持Docker部署,支持NAS。
47 lines
1.6 KiB
C#
47 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace MyHouse
|
|
{
|
|
public partial class FrmSetting : RySkins.SKinForm
|
|
{
|
|
public FrmSetting()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void FrmSetting_Resize(object sender, EventArgs e)
|
|
{
|
|
tabControl1.Refresh();
|
|
}
|
|
|
|
private void BtnCancel_Click(object sender, EventArgs e)
|
|
{
|
|
this.DialogResult = DialogResult.Cancel;
|
|
}
|
|
|
|
private void BtnOK_Click(object sender, EventArgs e)
|
|
{
|
|
mySetting.Save();
|
|
ryCommon.RyRegedit.RegRoot = Microsoft.Win32.RegistryHive.CurrentUser;
|
|
ryCommon.RyRegedit.SetAutoRun(ChkAutoRun.Checked, Soft_ConstInfo.Soft_Id, "\"" + Application.ExecutablePath.Replace("/", "\\") + "\" "+ Soft_ConstInfo.Soft_Pram);
|
|
DialogResult = DialogResult.OK;
|
|
}
|
|
ryControls.RySetting mySetting = new ryControls.RySetting();
|
|
private void FrmSetting_Load(object sender, EventArgs e)
|
|
{
|
|
mySetting.FilePath = Soft_ConstInfo.UserDataFolder + "\\Setting.xml";
|
|
mySetting.Add("AutoLogin", chkAutoLogin,false);
|
|
mySetting.Read();
|
|
ryCommon.RyRegedit.RegRoot = Microsoft.Win32.RegistryHive.CurrentUser;
|
|
ChkAutoRun.Checked = ryCommon.RyRegedit.IsAutoRun(Soft_ConstInfo.Soft_Id, "\"" + Application.ExecutablePath.Replace("/", "\\") + "\" "+ Soft_ConstInfo.Soft_Pram);
|
|
}
|
|
}
|
|
}
|