mirror of https://github.com/qwqdanchun/DcRat.git
49 lines
1.2 KiB
C#
49 lines
1.2 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.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Server.Forms
|
|
{
|
|
public partial class FormSetting : Form
|
|
{
|
|
public FormSetting()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
{
|
|
if (checkBox1.Checked == true)
|
|
{
|
|
if (textBox1.Text == null || textBox2.Text == null)
|
|
{
|
|
MessageBox.Show("Input the WebHook and secret");
|
|
}
|
|
}
|
|
Properties.Settings.Default.DingDing = checkBox1.Checked;
|
|
|
|
Properties.Settings.Default.WebHook = textBox1.Text;
|
|
|
|
Properties.Settings.Default.Secret = textBox2.Text;
|
|
|
|
this.Close();
|
|
|
|
}
|
|
|
|
private void FormSetting_Load(object sender, EventArgs e)
|
|
{
|
|
checkBox1.Checked = Properties.Settings.Default.DingDing;
|
|
|
|
textBox1.Text = Properties.Settings.Default.WebHook;
|
|
|
|
textBox2.Text = Properties.Settings.Default.Secret;
|
|
}
|
|
}
|
|
}
|