1 Star 2 Fork 3

李阳/tianruoocr

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
FmSetting.cs 25.29 KB
一键复制 编辑 原始数据 按行查看 历史
rochy_he 提交于 2019-02-24 11:38 . 重构汉字转拼音
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Net;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Web;
using System.Windows.Forms;
using Microsoft.Win32;
using TrOCR.Helper;
using TrOCR.Properties;
namespace TrOCR
{
public sealed partial class FmSetting
{
public FmSetting()
{
Font = new Font(Font.Name, 9f / StaticValue.DpiFactor, Font.Style, Font.Unit, Font.GdiCharSet, Font.GdiVerticalFont);
InitializeComponent();
}
public void readIniFile()
{
var value = IniHelper.GetValue("配置", "开机自启");
if (value == "发生错误")
{
cbBox_开机.Checked = true;
}
try
{
cbBox_开机.Checked = Convert.ToBoolean(value);
}
catch
{
cbBox_开机.Checked = true;
}
var value2 = IniHelper.GetValue("配置", "快速翻译");
if (value2 == "发生错误")
{
cbBox_翻译.Checked = true;
}
try
{
cbBox_翻译.Checked = Convert.ToBoolean(value2);
}
catch
{
cbBox_翻译.Checked = true;
}
var value3 = IniHelper.GetValue("配置", "识别弹窗");
if (value3 == "发生错误")
{
cbBox_弹窗.Checked = true;
}
try
{
cbBox_弹窗.Checked = Convert.ToBoolean(value3);
}
catch
{
cbBox_弹窗.Checked = true;
}
var value4 = IniHelper.GetValue("配置", "窗体动画");
cobBox_动画.Text = value4;
if (value4 == "发生错误")
{
cobBox_动画.Text = "窗体";
}
var value5 = IniHelper.GetValue("配置", "记录数目");
numbox_记录.Value = Convert.ToInt32(value5);
if (value5 == "发生错误")
{
numbox_记录.Value = 20m;
}
var value6 = IniHelper.GetValue("配置", "自动保存");
if (value6 == "发生错误")
{
cbBox_保存.Checked = false;
}
try
{
cbBox_保存.Checked = Convert.ToBoolean(value6);
}
catch
{
cbBox_保存.Checked = false;
}
if (cbBox_保存.Checked)
{
textBox_path.Enabled = true;
btn_浏览.Enabled = true;
}
if (!cbBox_保存.Checked)
{
textBox_path.Enabled = false;
btn_浏览.Enabled = false;
}
var value7 = IniHelper.GetValue("配置", "截图位置");
textBox_path.Text = value7;
if (value7 == "发生错误")
{
textBox_path.Text = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
}
var value8 = IniHelper.GetValue("快捷键", "文字识别");
txtBox_文字识别.Text = value8;
if (value8 == "发生错误")
{
txtBox_文字识别.Text = "F4";
}
var value9 = IniHelper.GetValue("快捷键", "翻译文本");
txtBox_翻译文本.Text = value9;
if (value9 == "发生错误")
{
txtBox_翻译文本.Text = "F9";
}
var value10 = IniHelper.GetValue("快捷键", "记录界面");
txtBox_记录界面.Text = value10;
if (value10 == "发生错误")
{
txtBox_记录界面.Text = "请按下快捷键";
}
var value11 = IniHelper.GetValue("快捷键", "识别界面");
txtBox_识别界面.Text = value11;
if (value11 == "发生错误")
{
txtBox_识别界面.Text = "请按下快捷键";
}
pictureBox_文字识别.Image = txtBox_文字识别.Text == "请按下快捷键" ? Resources.快捷键_0 : Resources.快捷键_1;
pictureBox_翻译文本.Image = txtBox_翻译文本.Text == "请按下快捷键" ? Resources.快捷键_0 : Resources.快捷键_1;
pictureBox_记录界面.Image = txtBox_记录界面.Text == "请按下快捷键" ? Resources.快捷键_0 : Resources.快捷键_1;
pictureBox_识别界面.Image = txtBox_识别界面.Text == "请按下快捷键" ? Resources.快捷键_0 : Resources.快捷键_1;
var value12 = IniHelper.GetValue("密钥_百度", "secret_id");
text_baiduaccount.Text = value12;
if (value12 == "发生错误")
{
text_baiduaccount.Text = "YsZKG1wha34PlDOPYaIrIIKO";
}
var value13 = IniHelper.GetValue("密钥_百度", "secret_key");
text_baidupassword.Text = value13;
if (value13 == "发生错误")
{
text_baidupassword.Text = "HPRZtdOHrdnnETVsZM2Nx7vbDkMfxrkD";
}
var value14 = IniHelper.GetValue("代理", "代理类型");
combox_代理.Text = value14;
if (value14 == "发生错误")
{
combox_代理.Text = "系统代理";
}
if (combox_代理.Text == "不使用代理" || combox_代理.Text == "系统代理")
{
text_账号.Enabled = false;
text_密码.Enabled = false;
chbox_代理服务器.Enabled = false;
text_端口.Enabled = false;
text_服务器.Enabled = false;
}
if (combox_代理.Text == "自定义代理")
{
text_端口.Enabled = true;
text_服务器.Enabled = true;
}
var value15 = IniHelper.GetValue("代理", "服务器");
text_服务器.Text = value15;
if (value15 == "发生错误")
{
text_服务器.Text = "127.0.0.1";
}
var value16 = IniHelper.GetValue("代理", "端口");
text_端口.Text = value16;
if (value16 == "发生错误")
{
text_端口.Text = "1080";
}
var value17 = IniHelper.GetValue("代理", "需要密码");
if (value17 == "发生错误")
{
chbox_代理服务器.Checked = false;
}
try
{
chbox_代理服务器.Checked = Convert.ToBoolean(value17);
}
catch
{
chbox_代理服务器.Checked = false;
}
var value18 = IniHelper.GetValue("代理", "服务器账号");
text_账号.Text = value18;
if (value18 == "发生错误")
{
text_账号.Text = "";
}
var value19 = IniHelper.GetValue("代理", "服务器密码");
text_密码.Text = value19;
if (value19 == "发生错误")
{
text_密码.Text = "";
}
if (chbox_代理服务器.Checked)
{
text_账号.Enabled = true;
text_密码.Enabled = true;
}
if (!chbox_代理服务器.Checked)
{
text_账号.Enabled = false;
text_密码.Enabled = false;
}
var value20 = IniHelper.GetValue("更新", "检测更新");
if (value20 == "发生错误")
{
check_检查更新.Checked = false;
}
try
{
check_检查更新.Checked = Convert.ToBoolean(value20);
}
catch
{
check_检查更新.Checked = false;
}
if (check_检查更新.Checked)
{
checkBox_更新间隔.Enabled = true;
}
if (!check_检查更新.Checked)
{
checkBox_更新间隔.Enabled = false;
numbox_间隔时间.Enabled = false;
}
var value21 = IniHelper.GetValue("更新", "更新间隔");
if (value21 == "发生错误")
{
checkBox_更新间隔.Checked = false;
}
try
{
checkBox_更新间隔.Checked = Convert.ToBoolean(value21);
}
catch
{
checkBox_更新间隔.Checked = false;
}
if (checkBox_更新间隔.Checked)
{
numbox_间隔时间.Enabled = true;
}
if (!checkBox_更新间隔.Checked)
{
numbox_间隔时间.Enabled = false;
}
var value22 = IniHelper.GetValue("更新", "间隔时间");
numbox_间隔时间.Value = Convert.ToInt32(value22);
if (value5 == "发生错误")
{
numbox_间隔时间.Value = 24m;
}
var value23 = IniHelper.GetValue("截图音效", "粘贴板");
if (value23 == "发生错误")
{
chbox_copy.Checked = false;
}
try
{
chbox_copy.Checked = Convert.ToBoolean(value23);
}
catch
{
chbox_copy.Checked = false;
}
var value24 = IniHelper.GetValue("截图音效", "自动保存");
if (value24 == "发生错误")
{
chbox_save.Checked = true;
}
try
{
chbox_save.Checked = Convert.ToBoolean(value24);
}
catch
{
chbox_save.Checked = true;
}
var value25 = IniHelper.GetValue("截图音效", "音效路径");
text_音效path.Text = value25;
if (value25 == "发生错误")
{
text_音效path.Text = "Data\\screenshot.wav";
}
var value26 = IniHelper.GetValue("取色器", "类型");
if (value26 == "发生错误")
{
chbox_取色.Checked = false;
}
if (value26 == "RGB")
{
chbox_取色.Checked = false;
}
if (value26 == "HEX")
{
chbox_取色.Checked = true;
}
}
private void Form1_Load(object sender, EventArgs e)
{
var componentResourceManager = new ComponentResourceManager(typeof(FmMain));
Icon = (Icon)componentResourceManager.GetObject("minico.Icon");
var numericUpDown = numbox_记录;
var array = new int[4];
array[0] = 99;
numericUpDown.Maximum = new decimal(array);
var numericUpDown2 = numbox_记录;
var array2 = new int[4];
array2[0] = 1;
numericUpDown2.Minimum = new decimal(array2);
var numericUpDown3 = numbox_记录;
var array3 = new int[4];
array3[0] = 1;
numericUpDown3.Value = new decimal(array3);
var numericUpDown4 = numbox_间隔时间;
var array4 = new int[4];
array4[0] = 24;
numericUpDown4.Maximum = new decimal(array4);
var numericUpDown5 = numbox_间隔时间;
var array5 = new int[4];
array5[0] = 1;
numericUpDown5.Minimum = new decimal(array5);
var numericUpDown6 = numbox_间隔时间;
var array6 = new int[4];
array6[0] = 1;
numericUpDown6.Value = new decimal(array6);
tab_标签.Height = (int)(350.0 * Program.Factor);
Height = tab_标签.Height + 50;
readIniFile();
chbox_代理服务器.CheckedChanged += chbox_代理服务器_CheckedChanged;
更新Button_check.Click += 更新Button_check_Click;
}
private void 百度申请_Click(object sender, EventArgs e)
{
Process.Start("https://console.bce.baidu.com/ai/");
}
public static string Get_html(string url)
{
string result;
var httpWebRequest = WebRequest.Create(url) as HttpWebRequest;
httpWebRequest.Method = "POST";
httpWebRequest.ContentType = "application/x-www-form-urlencoded";
try
{
using (var httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse())
{
using (var streamReader = new StreamReader(httpWebResponse.GetResponseStream(), Encoding.UTF8))
{
result = streamReader.ReadToEnd();
streamReader.Close();
httpWebResponse.Close();
}
}
httpWebRequest.Abort();
}
catch
{
result = "";
}
return result;
}
private void tab_标签_SelectedIndexChanged(object sender, EventArgs e)
{
if (tab_标签.SelectedTab == page_常规)
{
tab_标签.Height = (int)(350.0 * Program.Factor);
Height = tab_标签.Height + 50;
}
if (tab_标签.SelectedTab == Page_快捷键)
{
tab_标签.Height = (int)(225.0 * Program.Factor);
Height = tab_标签.Height + 50;
}
if (tab_标签.SelectedTab == Page_密钥)
{
tab_标签.Height = (int)(190.0 * Program.Factor);
Height = tab_标签.Height + 50;
}
if (tab_标签.SelectedTab == Page_代理)
{
tab_标签.Height = (int)(245.0 * Program.Factor);
Height = tab_标签.Height + 50;
}
if (tab_标签.SelectedTab == Page_更新)
{
tab_标签.Height = (int)(135.0 * Program.Factor);
Height = tab_标签.Height + 50;
}
}
private void pic_help_Click(object sender, EventArgs e)
{
new FmHelp().Show();
}
private void cbBox_开机_CheckedChanged(object sender, EventArgs e)
{
AutoStart(cbBox_开机.Checked);
}
private void cbBox_翻译_CheckedChanged(object sender, EventArgs e)
{
}
private void cbBox_弹窗_CheckedChanged(object sender, EventArgs e)
{
}
private void cobBox_动画_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void numbox_记录_ValueChanged(object sender, EventArgs e)
{
}
private void cbBox_保存_CheckedChanged(object sender, EventArgs e)
{
if (cbBox_保存.Checked)
{
textBox_path.Enabled = true;
btn_浏览.Enabled = true;
}
if (!cbBox_保存.Checked)
{
textBox_path.Enabled = false;
btn_浏览.Enabled = false;
}
}
private void btn_浏览_Click(object sender, EventArgs e)
{
var folderBrowserDialog = new FolderBrowserDialog();
if (folderBrowserDialog.ShowDialog() == DialogResult.OK)
{
textBox_path.Text = folderBrowserDialog.SelectedPath;
}
}
private void 密钥Button_Click(object sender, EventArgs e)
{
text_baiduaccount.Text = "YsZKG1wha34PlDOPYaIrIIKO";
text_baidupassword.Text = "HPRZtdOHrdnnETVsZM2Nx7vbDkMfxrkD";
}
private void folderBrowserDialog1_HelpRequest(object sender, EventArgs e)
{
}
private void 常规Button_Click(object sender, EventArgs e)
{
cbBox_开机.Checked = true;
cbBox_翻译.Checked = true;
cbBox_弹窗.Checked = true;
cobBox_动画.SelectedIndex = 0;
numbox_记录.Value = 20m;
cbBox_保存.Checked = true;
textBox_path.Enabled = true;
textBox_path.Text = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
btn_浏览.Enabled = true;
chbox_save.Checked = true;
text_音效path.Text = "Data\\screenshot.wav";
chbox_copy.Checked = false;
chbox_取色.Checked = false;
}
private void txtBox_KeyUp(object sender, KeyEventArgs e)
{
var textBox = sender as TextBox;
var regex = new Regex("[一-龥]+");
var str = "";
foreach (var obj in regex.Matches(textBox.Name))
{
str = ((Match)obj).ToString();
}
var key = "pictureBox_" + str;
var pictureBox = (PictureBox)Controls.Find(key, true)[0];
new ComponentResourceManager(typeof(FmSetting));
if (e.KeyData == Keys.Back)
{
textBox.Text = "请按下快捷键";
pictureBox.Image = Resources.快捷键_0;
if (textBox.Name.Contains("文字识别"))
{
IniHelper.SetValue("快捷键", "文字识别", txtBox_文字识别.Text);
}
if (textBox.Name.Contains("翻译文本"))
{
IniHelper.SetValue("快捷键", "翻译文本", txtBox_翻译文本.Text);
}
if (textBox.Name.Contains("记录界面"))
{
IniHelper.SetValue("快捷键", "记录界面", txtBox_记录界面.Text);
}
if (textBox.Name.Contains("识别界面"))
{
IniHelper.SetValue("快捷键", "识别界面", txtBox_识别界面.Text);
}
}
else if (e.KeyValue != 16 && e.KeyValue != 17 && e.KeyValue != 18)
{
var array = e.KeyData.ToString().Replace(" ", "").Replace("Control", "Ctrl").Split(',');
pictureBox.Image = Resources.快捷键_1;
if (array.Length == 1)
{
textBox.Text = array[0];
}
if (array.Length == 2)
{
textBox.Text = array[1] + "+" + array[0];
}
if (array.Length <= 2)
{
if (textBox.Name.Contains("文字识别"))
{
IniHelper.SetValue("快捷键", "文字识别", txtBox_文字识别.Text);
}
if (textBox.Name.Contains("翻译文本"))
{
IniHelper.SetValue("快捷键", "翻译文本", txtBox_翻译文本.Text);
}
if (textBox.Name.Contains("记录界面"))
{
IniHelper.SetValue("快捷键", "记录界面", txtBox_记录界面.Text);
}
if (textBox.Name.Contains("识别界面"))
{
IniHelper.SetValue("快捷键", "识别界面", txtBox_识别界面.Text);
}
}
}
}
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
return (keyData == Keys.Tab && txtBox_文字识别.Focused) || (keyData == Keys.Tab && txtBox_翻译文本.Focused) || (keyData == Keys.Tab && txtBox_记录界面.Focused) || (keyData == Keys.Tab && txtBox_识别界面.Focused);
}
private void txtBox_KeyDown(object sender, KeyEventArgs e)
{
e.SuppressKeyPress = true;
}
private void 快捷键Button_Click(object sender, EventArgs e)
{
new ComponentResourceManager(typeof(FmSetting));
txtBox_文字识别.Text = "F4";
pictureBox_文字识别.Image = Resources.快捷键_1;
txtBox_翻译文本.Text = "F9";
pictureBox_翻译文本.Image = Resources.快捷键_1;
txtBox_记录界面.Text = "请按下快捷键";
pictureBox_记录界面.Image = Resources.快捷键_0;
txtBox_识别界面.Text = "请按下快捷键";
pictureBox_识别界面.Image = Resources.快捷键_0;
}
private void 百度_btn_Click(object sender, EventArgs e)
{
if (Get_html(string.Format("{0}?{1}", "https://aip.baidubce.com/oauth/2.0/token", "grant_type=client_credentials&client_id=" + text_baiduaccount.Text + "&client_secret=" + text_baidupassword.Text)) != "")
{
MessageBox.Show("密钥正确!", "提醒");
return;
}
MessageBox.Show("请确保密钥正确!", "提醒");
}
private void combox_代理_SelectedIndexChanged(object sender, EventArgs e)
{
if (combox_代理.Text == "不使用代理" || combox_代理.Text == "系统代理")
{
text_账号.Enabled = false;
text_密码.Enabled = false;
chbox_代理服务器.Enabled = false;
text_端口.Enabled = false;
chbox_代理服务器.Checked = false;
text_服务器.Enabled = false;
text_服务器.Text = "";
text_端口.Text = "";
text_服务器.Text = "";
text_账号.Text = "";
text_密码.Text = "";
}
if (combox_代理.Text == "自定义代理")
{
text_端口.Enabled = true;
text_服务器.Enabled = true;
chbox_代理服务器.Enabled = true;
}
}
private void text_端口_MaskInputRejected(object sender, MaskInputRejectedEventArgs e)
{
}
private void text_baiduaccount_TextChanged(object sender, EventArgs e)
{
}
private void text_baidupassword_TextChanged(object sender, EventArgs e)
{
}
private void text_服务器_TextChanged(object sender, EventArgs e)
{
}
private void text_端口_TextChanged(object sender, EventArgs e)
{
}
private void chbox_代理服务器_CheckedChanged(object sender, EventArgs e)
{
if (chbox_代理服务器.Checked)
{
text_账号.Enabled = true;
text_密码.Enabled = true;
}
if (!chbox_代理服务器.Checked)
{
text_账号.Enabled = false;
text_密码.Enabled = false;
}
}
private void text_账号_TextChanged(object sender, EventArgs e)
{
}
private void text_密码_TextChanged(object sender, EventArgs e)
{
}
private void 代理Button_Click(object sender, EventArgs e)
{
combox_代理.Text = "系统代理";
text_账号.Enabled = false;
text_密码.Enabled = false;
chbox_代理服务器.Enabled = false;
text_端口.Enabled = false;
text_服务器.Enabled = false;
}
private void check_检查更新_CheckedChanged(object sender, EventArgs e)
{
if (check_检查更新.Checked)
{
checkBox_更新间隔.Enabled = true;
checkBox_更新间隔.Checked = true;
numbox_间隔时间.Enabled = true;
}
if (!check_检查更新.Checked)
{
checkBox_更新间隔.Checked = false;
checkBox_更新间隔.Enabled = false;
numbox_间隔时间.Enabled = false;
}
}
private void checkBox_更新间隔_CheckedChanged(object sender, EventArgs e)
{
if (checkBox_更新间隔.Checked)
{
numbox_间隔时间.Enabled = true;
}
if (!checkBox_更新间隔.Checked)
{
numbox_间隔时间.Enabled = false;
}
}
private void numbox_间隔时间_ValueChanged(object sender, EventArgs e)
{
}
private void 更新Button_Click(object sender, EventArgs e)
{
numbox_间隔时间.Value = 24m;
check_检查更新.Checked = true;
checkBox_更新间隔.Checked = true;
}
private void 更新Button_check_Click(object sender, EventArgs e)
{
new Thread(Program.CheckUpdate).Start();
}
private void 反馈Button_Click(object sender, EventArgs e)
{
new Thread(反馈send).Start();
}
public string Post_Html(string url, string post_str)
{
var bytes = Encoding.UTF8.GetBytes(post_str);
var result = "";
var httpWebRequest = WebRequest.Create(url) as HttpWebRequest;
httpWebRequest.Method = "POST";
httpWebRequest.Timeout = 6000;
httpWebRequest.Proxy = null;
httpWebRequest.ContentType = "application/x-www-form-urlencoded";
try
{
using (var requestStream = httpWebRequest.GetRequestStream())
{
requestStream.Write(bytes, 0, bytes.Length);
}
var responseStream = ((HttpWebResponse)httpWebRequest.GetResponse()).GetResponseStream();
var streamReader = new StreamReader(responseStream, Encoding.GetEncoding("utf-8"));
result = streamReader.ReadToEnd();
responseStream.Close();
streamReader.Close();
httpWebRequest.Abort();
}
catch
{
}
return result;
}
private void Form1_FormClosed(object sender, FormClosedEventArgs e)
{
IniHelper.SetValue("配置", "开机自启", cbBox_开机.Checked.ToString());
IniHelper.SetValue("配置", "快速翻译", cbBox_翻译.Checked.ToString());
IniHelper.SetValue("配置", "识别弹窗", cbBox_弹窗.Checked.ToString());
IniHelper.SetValue("配置", "窗体动画", cobBox_动画.Text);
IniHelper.SetValue("配置", "记录数目", numbox_记录.Text);
IniHelper.SetValue("配置", "自动保存", cbBox_保存.Checked.ToString());
IniHelper.SetValue("配置", "截图位置", textBox_path.Text);
IniHelper.SetValue("快捷键", "文字识别", txtBox_文字识别.Text);
IniHelper.SetValue("快捷键", "翻译文本", txtBox_翻译文本.Text);
IniHelper.SetValue("快捷键", "记录界面", txtBox_记录界面.Text);
IniHelper.SetValue("快捷键", "识别界面", txtBox_识别界面.Text);
IniHelper.SetValue("密钥_百度", "secret_id", text_baiduaccount.Text);
IniHelper.SetValue("密钥_百度", "secret_key", text_baidupassword.Text);
IniHelper.SetValue("代理", "代理类型", combox_代理.Text);
IniHelper.SetValue("代理", "服务器", text_服务器.Text);
IniHelper.SetValue("代理", "端口", text_端口.Text);
IniHelper.SetValue("代理", "需要密码", chbox_代理服务器.Checked.ToString());
IniHelper.SetValue("代理", "服务器账号", text_账号.Text);
IniHelper.SetValue("代理", "服务器密码", text_密码.Text);
IniHelper.SetValue("更新", "检测更新", check_检查更新.Checked.ToString());
IniHelper.SetValue("更新", "更新间隔", checkBox_更新间隔.Checked.ToString());
IniHelper.SetValue("更新", "间隔时间", numbox_间隔时间.Value.ToString());
IniHelper.SetValue("截图音效", "自动保存", chbox_save.Checked.ToString());
IniHelper.SetValue("截图音效", "音效路径", text_音效path.Text);
IniHelper.SetValue("截图音效", "粘贴板", chbox_copy.Checked.ToString());
if (!chbox_取色.Checked)
{
IniHelper.SetValue("取色器", "类型", "RGB");
}
if (chbox_取色.Checked)
{
IniHelper.SetValue("取色器", "类型", "HEX");
}
DialogResult = DialogResult.OK;
}
public static void AutoStart(bool isAuto)
{
try
{
var value = Application.ExecutablePath.Replace("/", "\\");
if (isAuto)
{
var currentUser = Registry.CurrentUser;
var registryKey = currentUser.CreateSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run");
registryKey.SetValue("tianruoOCR", value);
registryKey.Close();
currentUser.Close();
}
else
{
var currentUser2 = Registry.CurrentUser;
var registryKey2 = currentUser2.CreateSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run");
registryKey2.DeleteValue("tianruoOCR", false);
registryKey2.Close();
currentUser2.Close();
}
}
catch (Exception)
{
MessageBox.Show("您需要管理员权限修改", "提示");
}
}
private void 反馈send()
{
if (string.IsNullOrEmpty(txt_问题反馈.Text))
{
CommonHelper.ShowHelpMsg("反馈文本不能为空");
return;
}
var str = "sm=%E5%A4%A9%E8%8B%A5OCR%E6%96%87%E5%AD%97%E8%AF%86%E5%88%AB" + StaticValue.CurrentVersion + "&nr=";
Post_Html("http://cd.ys168.com/f_ht/ajcx/lyd.aspx?cz=lytj&pdgk=1&pdgly=0&pdzd=0&tou=1&yzm=undefined&_dlmc=tianruoyouxin&_dlmm=", str + HttpUtility.UrlEncode(txt_问题反馈.Text));
txt_问题反馈.Text = "";
CommonHelper.ShowHelpMsg("感谢您的反馈!");
}
public void PlaySong(string file)
{
HelpWin32.mciSendString("close media", null, 0, IntPtr.Zero);
HelpWin32.mciSendString("open \"" + file + "\" type mpegvideo alias media", null, 0, IntPtr.Zero);
HelpWin32.mciSendString("play media notify", null, 0, Handle);
}
private void btn_音效_Click(object sender, EventArgs e)
{
PlaySong(text_音效path.Text);
}
private void btn_音效路径_Click(object sender, EventArgs e)
{
var openFileDialog = new OpenFileDialog();
openFileDialog.Title = "请选择音效文件";
openFileDialog.Filter = "All files(*.*)|*.*|All files(*.*)|*.* ";
openFileDialog.RestoreDirectory = true;
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
text_音效path.Text = Path.GetFullPath(openFileDialog.FileName);
}
}
private void chbox_copy_CheckedChanged(object sender, EventArgs e)
{
}
private void chbox_save_CheckedChanged(object sender, EventArgs e)
{
}
private void chbox_取色_CheckedChanged(object sender, EventArgs e)
{
}
public string Start_set
{
set
{
tab_标签.SelectedIndex = 5;
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/linnera/tianruoocr.git
[email protected]:linnera/tianruoocr.git
linnera
tianruoocr
tianruoocr
master

搜索帮助