1、最近Teamviewer老是出状况,先实现ngrok吧。2、自动升级功能继续调试中...。
This commit is contained in:
wisdomwei201804 2018-06-07 23:53:24 +08:00
parent eda017bb6a
commit 2bc87f9861
7 changed files with 421 additions and 24 deletions

View File

@ -0,0 +1,150 @@
namespace net.nutcore.aliddns
{
partial class Form_ngrok
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form_ngrok));
this.groupBox_AuthToken = new System.Windows.Forms.GroupBox();
this.groupBox_ProtocolPort = new System.Windows.Forms.GroupBox();
this.groupBox_Url = new System.Windows.Forms.GroupBox();
this.button_cancel = new System.Windows.Forms.Button();
this.button_save = new System.Windows.Forms.Button();
this.textBox_AuthToken = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.textBox_NgrokDownloadUrl = new System.Windows.Forms.TextBox();
this.groupBox_AuthToken.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// groupBox_AuthToken
//
this.groupBox_AuthToken.Controls.Add(this.textBox_AuthToken);
this.groupBox_AuthToken.Location = new System.Drawing.Point(6, 12);
this.groupBox_AuthToken.Name = "groupBox_AuthToken";
this.groupBox_AuthToken.Size = new System.Drawing.Size(273, 50);
this.groupBox_AuthToken.TabIndex = 0;
this.groupBox_AuthToken.TabStop = false;
this.groupBox_AuthToken.Text = "认证令牌";
//
// groupBox_ProtocolPort
//
this.groupBox_ProtocolPort.Location = new System.Drawing.Point(6, 68);
this.groupBox_ProtocolPort.Name = "groupBox_ProtocolPort";
this.groupBox_ProtocolPort.Size = new System.Drawing.Size(273, 65);
this.groupBox_ProtocolPort.TabIndex = 1;
this.groupBox_ProtocolPort.TabStop = false;
this.groupBox_ProtocolPort.Text = "协议端口";
//
// groupBox_Url
//
this.groupBox_Url.Location = new System.Drawing.Point(6, 139);
this.groupBox_Url.Name = "groupBox_Url";
this.groupBox_Url.Size = new System.Drawing.Size(273, 90);
this.groupBox_Url.TabIndex = 2;
this.groupBox_Url.TabStop = false;
this.groupBox_Url.Text = "访问域名";
//
// button_cancel
//
this.button_cancel.Location = new System.Drawing.Point(40, 291);
this.button_cancel.Name = "button_cancel";
this.button_cancel.Size = new System.Drawing.Size(80, 23);
this.button_cancel.TabIndex = 3;
this.button_cancel.Text = "取消";
this.button_cancel.UseVisualStyleBackColor = true;
this.button_cancel.Click += new System.EventHandler(this.button_cancel_Click);
//
// button_save
//
this.button_save.Location = new System.Drawing.Point(156, 291);
this.button_save.Name = "button_save";
this.button_save.Size = new System.Drawing.Size(80, 23);
this.button_save.TabIndex = 4;
this.button_save.Text = "保存";
this.button_save.UseVisualStyleBackColor = true;
this.button_save.Click += new System.EventHandler(this.button_save_Click);
//
// textBox_AuthToken
//
this.textBox_AuthToken.Location = new System.Drawing.Point(11, 21);
this.textBox_AuthToken.Name = "textBox_AuthToken";
this.textBox_AuthToken.Size = new System.Drawing.Size(250, 21);
this.textBox_AuthToken.TabIndex = 0;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.textBox_NgrokDownloadUrl);
this.groupBox1.Location = new System.Drawing.Point(6, 235);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(273, 50);
this.groupBox1.TabIndex = 5;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Ngrok下载地址";
//
// textBox_NgrokDownloadUrl
//
this.textBox_NgrokDownloadUrl.Location = new System.Drawing.Point(11, 22);
this.textBox_NgrokDownloadUrl.Name = "textBox_NgrokDownloadUrl";
this.textBox_NgrokDownloadUrl.Size = new System.Drawing.Size(250, 21);
this.textBox_NgrokDownloadUrl.TabIndex = 0;
this.textBox_NgrokDownloadUrl.Text = "https://ngrok.com/download";
//
// Form_ngrok
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 319);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.button_save);
this.Controls.Add(this.button_cancel);
this.Controls.Add(this.groupBox_Url);
this.Controls.Add(this.groupBox_ProtocolPort);
this.Controls.Add(this.groupBox_AuthToken);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "Form_ngrok";
this.Text = "Ngrok设置";
this.groupBox_AuthToken.ResumeLayout(false);
this.groupBox_AuthToken.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox_AuthToken;
private System.Windows.Forms.GroupBox groupBox_ProtocolPort;
private System.Windows.Forms.GroupBox groupBox_Url;
private System.Windows.Forms.Button button_cancel;
private System.Windows.Forms.Button button_save;
private System.Windows.Forms.TextBox textBox_AuthToken;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TextBox textBox_NgrokDownloadUrl;
}
}

View File

@ -0,0 +1,34 @@
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 net.nutcore.aliddns
{
public partial class Form_ngrok : Form
{
public Form_ngrok()
{
InitializeComponent();
this.MinimizeBox = false; //取消窗口最小化按钮
this.MaximizeBox = false; //取消窗口最大化按钮
}
private void button_cancel_Click(object sender, EventArgs e)
{
this.Close();
this.Dispose();
}
private void button_save_Click(object sender, EventArgs e)
{
this.Close();
this.Dispose();
}
}
}

View File

@ -0,0 +1,197 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAABILAAASCwAAAAAAAAAA
AAAAAAAARU36AEVN+gBFTfoHRU36IUVN+kBFTfpgRU36hEVN+rJFTfrWRU365kVN+u9FTfr2RU36/EVN
+v9FTfr/RU36/0VN+v9FTfr+RU36+UVN+vJFTfrpRU363EVN+r1FTfqPRU36aEVN+kdFTfomRU36CEVN
+gBFTfoAAAAAAEVN+gBFTfoBRU36L0VN+plFTfrbRU368EVN+vpFTfr+RU36/0VN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr7RU3680VN
+t9FTfqgRU36MkVN+gFFTfoARU36AEVN+jBFTfrWRU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfraRU36MEVN+gBFTfoFRU36okVN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfqaRU36BkVN+h5FTfrXRU36/0VN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/REz6/0RM+v9ETPr/REz6/0VN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+ttFTfoiRU36PUVN+u1FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9ETPr/Qkr4/0ZO9f9PVvL/VFvw/1Vb7/9QV/D/R0/y/0JK
9f9DS/n/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU368EVN+kJFTfpxRU36+kVN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/Q0v4/1FY9P9zefD/p6v0/8nL+f/S1Pr/09X6/8zO
+f+xtPT/fIHs/1Vb7P9DS/T/REz6/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr6RU36YUVN
+qZFTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/REz6/0ZO9/9yePP/w8X5/+Xm/v/r7P//6+z//+Xm
///k5f//6er//+zt///n6P7/ztD5/4CF7P9IUO//REz5/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN
+v9FTfqERU36wEVN+v9FTfr/RU36/0VN+v9FTfr/RU36/0RM+v9IUPj/j5T2/+Hi/f/u7///6+z//+3u
//+8v/v/cHb7/2ty+/+anv3/5+j//+zt///u7///5+n+/6Km8f9NVO7/REz5/0VN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+rNFTfrSRU36/0VN+v9FTfr/RU36/0VN+v9FTfr/Rk75/46T9//o6f7/7vD//8TH
/f/P0v3/7O3+/3l/9/8+R/n/QEj5/1de+v/Y2v7/5OX9/8LF+f/p6///7u/+/6Sn8f9JUPD/REz6/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU3610VN+uBFTfr/RU36/0VN+v9FTfr/RU36/0NM+v9udfj/4eP9//Hy
//+ytfv/YGb3/9DS/f/l5/3/cXfw/1lf7/9bYe//XWPv/8jL+v/r7P7/c3nv/5me+P/s7f//7O3+/4OI
7v9DS/X/RU36/0VN+v9FTfr/RU36/0VN+v9FTfrmRU366UVN+v9FTfr/RU36/0VN+v9FTfr/TFT5/8DD
/P/29///2Nr7/32C7/+VmfH/6uv+//Hx/v/h4vv/4uP7/+Lj+//f4Pv/6+z9//P0//+vsvL/dXrr/8XH
9//29v//1tj5/1de8P9ETPr/RU36/0VN+v9FTfr/RU36/0VN+vBFTfrwRU36/0VN+v9FTfr/RU36/0NL
+v9rcfr/6er+//f3///t7v3/7u/9//f3///29///8PH+/+jp///k5v//5Ob//+fo///t7v//9fb///f3
///x8f3/6uv8//X2///z9P7/gobv/0JK9/9FTfr/RU36/0VN+v9FTfr/RU3690VN+vVFTfr/RU36/0VN
+v9FTfr/REz6/6Gl+//5+f//9/j//+nq///P0f7/4OH+//r7//+usvf/Ymn5/15l+/9eZfv/YGf7/4iN
/P/y8v//7e79/87Q/P/k5f//9fb///v7//+8v/b/SVD1/0VN+v9FTfr/RU36/0VN+v9FTfr9RU36+EVN
+v9FTfr/RU36/0VN+v9IUPr/wsX9//////+/wvn/ZWz6/05W+v+2uv3//v///42S8/9ASPj/Q0z6/0NM
+v9BSfr/ZWz7/+/w///e3/v/W2L2/1xj+/+nqv3/+vv//9vd+v9TWvX/REz6/0VN+v9FTfr/RU36/0VN
+v9FTfr6RU36/0VN+v9FTfr/RU36/0tT+v/O0P7//////4uQ8/9ASPj/Rk76/7y//f//////iIzy/z5G
9v9BSfb/QUn2/z9H9v9haPn/7u/+/+Pk/P9XXvb/QEj6/3B2+//29///5uf8/1lg9v9ETPr/RU36/0VN
+v9FTfr/RU36/0VN+vpFTfr/RU36/0VN+v9FTfr/S1P6/87Q/v//////j5Tx/0BI9/9DS/f/vL/7////
//+lqPH/dnvs/4GG7f+Ch+z/en7s/4iM7//z9P7/4+T7/1Ra8v8/R/j/dHr7//n5///m5/z/WWD3/0RM
+v9FTfr/RU36/0VN+v9FTfr/RU3690VN+v9FTfr/RU36/0VN+v9IT/r/wcT9//////+3uvT/W2Lv/4OI
8P/e4Pr///////v7/v/9/f7////+/////v/+/v7/+/v+///////y8v3/lZnu/11j6/+coPf//////9zd
/P9SWvj/REz6/0VN+v9FTfr/RU36/0VN+v9FTfr0RU36/0VN+v9FTfr/RU36/0NL+v+anvz///////T1
/f/n6Pv//f3+//39////////8PD9/87Q/f/FyP7/xMf9/8rM/v/i4/7//v7///7+///+/v//7Oz7/+7u
/P//////t7r5/0hP+f9FTfr/RU36/0VN+v9FTfr/RU36/kVN+u5FTfr/RU36/0VN+v9FTfr/Q0v6/2Rr
+//s7f7///////Pz/f+1uPv/o6f9//v8///P0fj/UFf2/0hQ+v9IUPr/SFD6/5uf+///////xcf5/6qt
+//o6f7///////n6/v99gvj/Qkr6/0VN+v9FTfr/RU36/0VN+v9FTfr5RU365kVN+v9FTfr/RU36/0VN
+v9FTfr/SVH6/7q9/f//////6On7/2Jo7P9dZPf/7+///+Lj+v9VXPT/REz6/0VN+v9GTvr/ur38////
//+Fivb/Uln1/9PV+///////1Nb8/1Rb+f9ETPr/RU36/0VN+v9FTfr/RU36/0VN+vJFTfrcRU36/0VN
+v9FTfr/RU36/0VN+v9DTPr/ZGv7/+Pk/v//////0dL2/21z7P/W1/v/9PX9/2hu8f9DS/n/REz6/09X
+v/W2P3/9PT9/32C8/+6vfj//v7///Pz/v96gPr/Q0v6/0VN+v9FTfr/RU36/0VN+v9FTfr/RU366UVN
+s1FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9ETPr/gYb8/+7v////////4+T5/+Lj+v//////io/v/z5G
8/8/R/X/Y2r3/+7v/v/z9P3/4OH6//39///4+P//mp77/0dP+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN
+v9FTfrbRU36ukVN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/gYb8/+Tl/v//////////////
///Y2vj/j5Ps/4qO7f+8vvT//f3/////////////7+/+/5eb/P9JUfr/REz6/0VN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+rxFTfqbRU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9ETPr/ZGv7/7q9
/f/t7v///f3////////////////////////+/v//8vL//8nL/f9zefv/Rk76/0RM+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36jkVN+mRFTfr4RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN
+v9DTPr/SVH6/2Rr+/+anvz/wsT9/8/R/v/Q0v7/xcj9/6Wp/f9tc/v/TVT6/0NL+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+vtFTfpmRU36N0VN+upFTfr/RU36/0VN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/Q0v6/0NL+v9IT/r/S1P6/0tT+v9IUPr/REz6/0NL+v9ETPr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU368kVN+kVFTfoaRU360kVN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfrdRU36JUVN+gRFTfqaRU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+p9FTfoHRU36AEVN
+ixFTfrSRU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfrWRU36MEVN
+gBFTfoARU36AEVN+i5FTfqfRU3610VN+u5FTfr6RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN
+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr/RU36/0VN+v9FTfr+RU36+EVN+utFTfrURU36nUVN
+i5FTfoARU36AAAAAABFTfoARU36AEVN+gZFTfodRU36PUVN+m9FTfqkRU36wEVN+tJFTfrfRU366EVN
+vBFTfr1RU36+EVN+vpFTfr6RU36+EVN+vRFTfrtRU365UVN+txFTfrORU36u0VN+pxFTfplRU36OEVN
+htFTfoFRU36AEVN+gAAAAAA4AAAB4AAAAGAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAACAAAABgAAAAeAAAAc=
</value>
</data>
</root>

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值,
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.8.3.0")]
[assembly: AssemblyFileVersion("3.8.3.0")]
[assembly: AssemblyVersion("3.8.3.5")]
[assembly: AssemblyFileVersion("3.8.3.5")]

View File

@ -31,6 +31,8 @@
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(mainForm));
this.timeSetGroup = new System.Windows.Forms.GroupBox();
this.button_ngrok = new System.Windows.Forms.Button();
this.checkBox_ngrok = new System.Windows.Forms.CheckBox();
this.checkBox_logAutoSave = new System.Windows.Forms.CheckBox();
this.checkBox_minimized = new System.Windows.Forms.CheckBox();
this.checkBox_autoUpdate = new System.Windows.Forms.CheckBox();
@ -83,8 +85,6 @@
this.comboBox_whatIsUrl = new System.Windows.Forms.ComboBox();
this.button_whatIsTest = new System.Windows.Forms.Button();
this.label14 = new System.Windows.Forms.Label();
this.checkBox_ngrok = new System.Windows.Forms.CheckBox();
this.button_ngrok = new System.Windows.Forms.Button();
this.timeSetGroup.SuspendLayout();
this.debugMessage.SuspendLayout();
this.globalSetGroup.SuspendLayout();
@ -111,6 +111,27 @@
this.timeSetGroup.TabStop = false;
this.timeSetGroup.Text = "其它设置";
//
// button_ngrok
//
this.button_ngrok.Location = new System.Drawing.Point(112, 53);
this.button_ngrok.Name = "button_ngrok";
this.button_ngrok.Size = new System.Drawing.Size(79, 23);
this.button_ngrok.TabIndex = 10;
this.button_ngrok.Text = "ngrok设置";
this.button_ngrok.UseVisualStyleBackColor = true;
this.button_ngrok.Click += new System.EventHandler(this.button_ngrok_Click);
//
// checkBox_ngrok
//
this.checkBox_ngrok.AutoSize = true;
this.checkBox_ngrok.Location = new System.Drawing.Point(9, 57);
this.checkBox_ngrok.Name = "checkBox_ngrok";
this.checkBox_ngrok.Size = new System.Drawing.Size(78, 16);
this.checkBox_ngrok.TabIndex = 9;
this.checkBox_ngrok.Text = "启用ngrok";
this.checkBox_ngrok.UseVisualStyleBackColor = true;
this.checkBox_ngrok.CheckedChanged += new System.EventHandler(this.checkBox_ngrok_CheckedChanged);
//
// checkBox_logAutoSave
//
this.checkBox_logAutoSave.AutoSize = true;
@ -627,26 +648,6 @@
this.label14.TabIndex = 16;
this.label14.Text = "查询网址:";
//
// checkBox_ngrok
//
this.checkBox_ngrok.AutoSize = true;
this.checkBox_ngrok.Location = new System.Drawing.Point(9, 57);
this.checkBox_ngrok.Name = "checkBox_ngrok";
this.checkBox_ngrok.Size = new System.Drawing.Size(78, 16);
this.checkBox_ngrok.TabIndex = 9;
this.checkBox_ngrok.Text = "启用ngrok";
this.checkBox_ngrok.UseVisualStyleBackColor = true;
this.checkBox_ngrok.CheckedChanged += new System.EventHandler(this.checkBox_ngrok_CheckedChanged);
//
// button_ngrok
//
this.button_ngrok.Location = new System.Drawing.Point(112, 53);
this.button_ngrok.Name = "button_ngrok";
this.button_ngrok.Size = new System.Drawing.Size(79, 23);
this.button_ngrok.TabIndex = 10;
this.button_ngrok.Text = "ngrok设置";
this.button_ngrok.UseVisualStyleBackColor = true;
//
// mainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);

View File

@ -860,6 +860,12 @@ namespace net.nutcore.aliddns
else
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "Ngrok功能关闭再次启动不会加载" + "\r\n");
}
private void button_ngrok_Click(object sender, EventArgs e)
{
Form_ngrok ngrok = new Form_ngrok();
ngrok.Show(this);
}
}
/// <summary>

View File

@ -85,6 +85,12 @@
<Compile Include="Form_About.Designer.cs">
<DependentUpon>Form_About.cs</DependentUpon>
</Compile>
<Compile Include="Form_ngrok.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form_ngrok.Designer.cs">
<DependentUpon>Form_ngrok.cs</DependentUpon>
</Compile>
<Compile Include="main.cs">
<SubType>Form</SubType>
</Compile>
@ -96,6 +102,9 @@
<EmbeddedResource Include="Form_About.resx">
<DependentUpon>Form_About.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Form_ngrok.resx">
<DependentUpon>Form_ngrok.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="main.resx">
<DependentUpon>main.cs</DependentUpon>
</EmbeddedResource>