📄 详细设置.cs
字号:
using System;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace SmartAnswerCall
{
public partial class 详细设置 : Form
{
public 详细设置()
{
InitializeComponent();
}
private void frmSet_Load(object sender, EventArgs e)
{
this.cbo延迟时间.Text = 录音记录.int延迟时间.ToString();
this.chb自动启动.Checked = 录音记录.bool自动启动;
this.chb自动录音.Checked = 录音记录.bool自动录音;
this.chb来电黑名单.Checked = 录音记录.bool启用黑名单;
this.chb短信回复.Checked = 录音记录.bool回复短信;
}
private void menu完成_Click(object sender, EventArgs e)
{
base.DialogResult = DialogResult.OK;
base.Close();
}
private void menu取消_Click(object sender, EventArgs e)
{
base.DialogResult = DialogResult.Cancel;
base.Close();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -