------ #### SuperDesign V3.0.2412.2001 - *.[新增]新增程序更新日志设置和自动发布功能。 - *.[修复]修复Post数据格式不正确时双击文本框会导致软件闪退的BUG。
		
			
				
	
	
		
			352 lines
		
	
	
		
			18 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			352 lines
		
	
	
		
			18 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace 开发辅助工具.Tools
 | |
| {
 | |
|     partial class FrmEncode
 | |
|     {
 | |
|         /// <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()
 | |
|         {
 | |
|             this.components = new System.ComponentModel.Container();
 | |
|             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmEncode));
 | |
|             this.RbChsToUnicode = new System.Windows.Forms.RadioButton();
 | |
|             this.RbUnicodeToChs = new System.Windows.Forms.RadioButton();
 | |
|             this.CbbEncodingCode = new ryControls.RyComboBox();
 | |
|             this.RbURLDecode = new System.Windows.Forms.RadioButton();
 | |
|             this.RbURLEncode = new System.Windows.Forms.RadioButton();
 | |
|             this.RbBase64Decode = new System.Windows.Forms.RadioButton();
 | |
|             this.RbBase64Encode = new System.Windows.Forms.RadioButton();
 | |
|             this.menuRight1 = new ryPaiban.Model.MenuRight(this.components);
 | |
|             this.RbChsToUTF8 = new System.Windows.Forms.RadioButton();
 | |
|             this.RbUTF8ToChs = new System.Windows.Forms.RadioButton();
 | |
|             this.RbMD5 = new System.Windows.Forms.RadioButton();
 | |
|             this.RbSHA1 = new System.Windows.Forms.RadioButton();
 | |
|             this.RbSHA256 = new System.Windows.Forms.RadioButton();
 | |
|             this.RbSHA224 = new System.Windows.Forms.RadioButton();
 | |
|             this.RbSHA512 = new System.Windows.Forms.RadioButton();
 | |
|             this.TxtFromCode = new ryControls.Controls.RichTextBox2();
 | |
|             this.RbJsonToXML = new System.Windows.Forms.RadioButton();
 | |
|             this.TxtResultCode = new ryControls.Controls.RichTextBox2();
 | |
|             this.RbBigToSmall = new System.Windows.Forms.RadioButton();
 | |
|             this.RbSmallToBig = new System.Windows.Forms.RadioButton();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // RbChsToUnicode
 | |
|             // 
 | |
|             this.RbChsToUnicode.AutoSize = true;
 | |
|             this.RbChsToUnicode.Location = new System.Drawing.Point(463, 8);
 | |
|             this.RbChsToUnicode.Name = "RbChsToUnicode";
 | |
|             this.RbChsToUnicode.Size = new System.Drawing.Size(101, 16);
 | |
|             this.RbChsToUnicode.TabIndex = 21;
 | |
|             this.RbChsToUnicode.Text = "中文转Unicode";
 | |
|             this.RbChsToUnicode.UseVisualStyleBackColor = true;
 | |
|             this.RbChsToUnicode.CheckedChanged += new System.EventHandler(this.RbUnicodeToChs_CheckedChanged);
 | |
|             // 
 | |
|             // RbUnicodeToChs
 | |
|             // 
 | |
|             this.RbUnicodeToChs.AutoSize = true;
 | |
|             this.RbUnicodeToChs.Location = new System.Drawing.Point(356, 8);
 | |
|             this.RbUnicodeToChs.Name = "RbUnicodeToChs";
 | |
|             this.RbUnicodeToChs.Size = new System.Drawing.Size(101, 16);
 | |
|             this.RbUnicodeToChs.TabIndex = 20;
 | |
|             this.RbUnicodeToChs.Text = "Unicode转中文";
 | |
|             this.RbUnicodeToChs.UseVisualStyleBackColor = true;
 | |
|             this.RbUnicodeToChs.CheckedChanged += new System.EventHandler(this.RbUnicodeToChs_CheckedChanged);
 | |
|             // 
 | |
|             // CbbEncodingCode
 | |
|             // 
 | |
|             this.CbbEncodingCode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
 | |
|             this.CbbEncodingCode.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
 | |
|             this.CbbEncodingCode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
 | |
|             this.CbbEncodingCode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
 | |
|             this.CbbEncodingCode.FormattingEnabled = true;
 | |
|             this.CbbEncodingCode.Items.AddRange(new object[] {
 | |
|             "UTF8",
 | |
|             "GBK",
 | |
|             "GB2312",
 | |
|             "ASCII",
 | |
|             "Unicode"});
 | |
|             this.CbbEncodingCode.Location = new System.Drawing.Point(817, 2);
 | |
|             this.CbbEncodingCode.Name = "CbbEncodingCode";
 | |
|             this.CbbEncodingCode.Size = new System.Drawing.Size(121, 22);
 | |
|             this.CbbEncodingCode.TabIndex = 19;
 | |
|             this.CbbEncodingCode.SelectedIndexChanged += new System.EventHandler(this.CbbEncodingCode_SelectedIndexChanged);
 | |
|             // 
 | |
|             // RbURLDecode
 | |
|             // 
 | |
|             this.RbURLDecode.AutoSize = true;
 | |
|             this.RbURLDecode.Location = new System.Drawing.Point(273, 8);
 | |
|             this.RbURLDecode.Name = "RbURLDecode";
 | |
|             this.RbURLDecode.Size = new System.Drawing.Size(77, 16);
 | |
|             this.RbURLDecode.TabIndex = 18;
 | |
|             this.RbURLDecode.Text = "URLDecode";
 | |
|             this.RbURLDecode.UseVisualStyleBackColor = true;
 | |
|             this.RbURLDecode.CheckedChanged += new System.EventHandler(this.RbBase64Encode_CheckedChanged);
 | |
|             // 
 | |
|             // RbURLEncode
 | |
|             // 
 | |
|             this.RbURLEncode.AutoSize = true;
 | |
|             this.RbURLEncode.Location = new System.Drawing.Point(190, 8);
 | |
|             this.RbURLEncode.Name = "RbURLEncode";
 | |
|             this.RbURLEncode.Size = new System.Drawing.Size(77, 16);
 | |
|             this.RbURLEncode.TabIndex = 17;
 | |
|             this.RbURLEncode.Text = "URLEncode";
 | |
|             this.RbURLEncode.UseVisualStyleBackColor = true;
 | |
|             this.RbURLEncode.CheckedChanged += new System.EventHandler(this.RbBase64Encode_CheckedChanged);
 | |
|             // 
 | |
|             // RbBase64Decode
 | |
|             // 
 | |
|             this.RbBase64Decode.AutoSize = true;
 | |
|             this.RbBase64Decode.Location = new System.Drawing.Point(101, 8);
 | |
|             this.RbBase64Decode.Name = "RbBase64Decode";
 | |
|             this.RbBase64Decode.Size = new System.Drawing.Size(83, 16);
 | |
|             this.RbBase64Decode.TabIndex = 16;
 | |
|             this.RbBase64Decode.Text = "Base64解码";
 | |
|             this.RbBase64Decode.UseVisualStyleBackColor = true;
 | |
|             this.RbBase64Decode.CheckedChanged += new System.EventHandler(this.RbBase64Encode_CheckedChanged);
 | |
|             // 
 | |
|             // RbBase64Encode
 | |
|             // 
 | |
|             this.RbBase64Encode.AutoSize = true;
 | |
|             this.RbBase64Encode.Checked = true;
 | |
|             this.RbBase64Encode.Location = new System.Drawing.Point(12, 8);
 | |
|             this.RbBase64Encode.Name = "RbBase64Encode";
 | |
|             this.RbBase64Encode.Size = new System.Drawing.Size(83, 16);
 | |
|             this.RbBase64Encode.TabIndex = 15;
 | |
|             this.RbBase64Encode.TabStop = true;
 | |
|             this.RbBase64Encode.Text = "Base64编码";
 | |
|             this.RbBase64Encode.UseVisualStyleBackColor = true;
 | |
|             this.RbBase64Encode.CheckedChanged += new System.EventHandler(this.RbBase64Encode_CheckedChanged);
 | |
|             // 
 | |
|             // menuRight1
 | |
|             // 
 | |
|             this.menuRight1.Name = "menuRight1";
 | |
|             this.menuRight1.Size = new System.Drawing.Size(185, 92);
 | |
|             this.menuRight1.SourceContent = this;
 | |
|             // 
 | |
|             // RbChsToUTF8
 | |
|             // 
 | |
|             this.RbChsToUTF8.AutoSize = true;
 | |
|             this.RbChsToUTF8.Location = new System.Drawing.Point(665, 8);
 | |
|             this.RbChsToUTF8.Name = "RbChsToUTF8";
 | |
|             this.RbChsToUTF8.Size = new System.Drawing.Size(89, 16);
 | |
|             this.RbChsToUTF8.TabIndex = 23;
 | |
|             this.RbChsToUTF8.Text = "中文转UTF-8";
 | |
|             this.RbChsToUTF8.UseVisualStyleBackColor = true;
 | |
|             this.RbChsToUTF8.CheckedChanged += new System.EventHandler(this.RbUnicodeToChs_CheckedChanged);
 | |
|             // 
 | |
|             // RbUTF8ToChs
 | |
|             // 
 | |
|             this.RbUTF8ToChs.AutoSize = true;
 | |
|             this.RbUTF8ToChs.Location = new System.Drawing.Point(570, 8);
 | |
|             this.RbUTF8ToChs.Name = "RbUTF8ToChs";
 | |
|             this.RbUTF8ToChs.Size = new System.Drawing.Size(89, 16);
 | |
|             this.RbUTF8ToChs.TabIndex = 22;
 | |
|             this.RbUTF8ToChs.Text = "UTF-8转中文";
 | |
|             this.RbUTF8ToChs.UseVisualStyleBackColor = true;
 | |
|             this.RbUTF8ToChs.CheckedChanged += new System.EventHandler(this.RbUnicodeToChs_CheckedChanged);
 | |
|             // 
 | |
|             // RbMD5
 | |
|             // 
 | |
|             this.RbMD5.AutoSize = true;
 | |
|             this.RbMD5.Location = new System.Drawing.Point(12, 32);
 | |
|             this.RbMD5.Name = "RbMD5";
 | |
|             this.RbMD5.Size = new System.Drawing.Size(41, 16);
 | |
|             this.RbMD5.TabIndex = 24;
 | |
|             this.RbMD5.Text = "MD5";
 | |
|             this.RbMD5.UseVisualStyleBackColor = true;
 | |
|             this.RbMD5.CheckedChanged += new System.EventHandler(this.RbNoEncoding_CheckedChanged);
 | |
|             // 
 | |
|             // RbSHA1
 | |
|             // 
 | |
|             this.RbSHA1.AutoSize = true;
 | |
|             this.RbSHA1.Location = new System.Drawing.Point(72, 32);
 | |
|             this.RbSHA1.Name = "RbSHA1";
 | |
|             this.RbSHA1.Size = new System.Drawing.Size(47, 16);
 | |
|             this.RbSHA1.TabIndex = 25;
 | |
|             this.RbSHA1.Text = "SHA1";
 | |
|             this.RbSHA1.UseVisualStyleBackColor = true;
 | |
|             this.RbSHA1.CheckedChanged += new System.EventHandler(this.RbNoEncoding_CheckedChanged);
 | |
|             // 
 | |
|             // RbSHA256
 | |
|             // 
 | |
|             this.RbSHA256.AutoSize = true;
 | |
|             this.RbSHA256.Location = new System.Drawing.Point(224, 32);
 | |
|             this.RbSHA256.Name = "RbSHA256";
 | |
|             this.RbSHA256.Size = new System.Drawing.Size(59, 16);
 | |
|             this.RbSHA256.TabIndex = 26;
 | |
|             this.RbSHA256.Text = "SHA256";
 | |
|             this.RbSHA256.UseVisualStyleBackColor = true;
 | |
|             this.RbSHA256.CheckedChanged += new System.EventHandler(this.RbNoEncoding_CheckedChanged);
 | |
|             // 
 | |
|             // RbSHA224
 | |
|             // 
 | |
|             this.RbSHA224.AutoSize = true;
 | |
|             this.RbSHA224.Enabled = false;
 | |
|             this.RbSHA224.Location = new System.Drawing.Point(144, 32);
 | |
|             this.RbSHA224.Name = "RbSHA224";
 | |
|             this.RbSHA224.Size = new System.Drawing.Size(59, 16);
 | |
|             this.RbSHA224.TabIndex = 27;
 | |
|             this.RbSHA224.Text = "SHA224";
 | |
|             this.RbSHA224.UseVisualStyleBackColor = true;
 | |
|             this.RbSHA224.CheckedChanged += new System.EventHandler(this.RbNoEncoding_CheckedChanged);
 | |
|             // 
 | |
|             // RbSHA512
 | |
|             // 
 | |
|             this.RbSHA512.AutoSize = true;
 | |
|             this.RbSHA512.Location = new System.Drawing.Point(304, 32);
 | |
|             this.RbSHA512.Name = "RbSHA512";
 | |
|             this.RbSHA512.Size = new System.Drawing.Size(59, 16);
 | |
|             this.RbSHA512.TabIndex = 28;
 | |
|             this.RbSHA512.Text = "SHA512";
 | |
|             this.RbSHA512.UseVisualStyleBackColor = true;
 | |
|             this.RbSHA512.CheckedChanged += new System.EventHandler(this.RbNoEncoding_CheckedChanged);
 | |
|             // 
 | |
|             // TxtFromCode
 | |
|             // 
 | |
|             this.TxtFromCode.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
 | |
|             | System.Windows.Forms.AnchorStyles.Right)));
 | |
|             this.TxtFromCode.BorderStyle = System.Windows.Forms.BorderStyle.None;
 | |
|             this.TxtFromCode.DetectUrls = false;
 | |
|             this.TxtFromCode.EmptyText = "请填写待转换的内容";
 | |
|             this.TxtFromCode.Font = new System.Drawing.Font("Courier New", 10F);
 | |
|             this.TxtFromCode.ForeColor = System.Drawing.Color.Black;
 | |
|             this.TxtFromCode.Location = new System.Drawing.Point(12, 54);
 | |
|             this.TxtFromCode.Name = "TxtFromCode";
 | |
|             this.TxtFromCode.OnlyInputText = true;
 | |
|             this.TxtFromCode.Size = new System.Drawing.Size(926, 174);
 | |
|             this.TxtFromCode.TabIndex = 29;
 | |
|             this.TxtFromCode.Text = "";
 | |
|             this.TxtFromCode.TextChanged += new System.EventHandler(this.TxtFromCode_TextChanged);
 | |
|             this.TxtFromCode.DoubleClick += new System.EventHandler(this.TxtFromCode_DoubleClick_1);
 | |
|             // 
 | |
|             // RbJsonToXML
 | |
|             // 
 | |
|             this.RbJsonToXML.AutoSize = true;
 | |
|             this.RbJsonToXML.Location = new System.Drawing.Point(379, 32);
 | |
|             this.RbJsonToXML.Name = "RbJsonToXML";
 | |
|             this.RbJsonToXML.Size = new System.Drawing.Size(77, 16);
 | |
|             this.RbJsonToXML.TabIndex = 30;
 | |
|             this.RbJsonToXML.Text = "Json=>XML";
 | |
|             this.RbJsonToXML.UseVisualStyleBackColor = true;
 | |
|             this.RbJsonToXML.CheckedChanged += new System.EventHandler(this.RbJsonToXML_CheckedChanged);
 | |
|             // 
 | |
|             // TxtResultCode
 | |
|             // 
 | |
|             this.TxtResultCode.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
 | |
|             | System.Windows.Forms.AnchorStyles.Left) 
 | |
|             | System.Windows.Forms.AnchorStyles.Right)));
 | |
|             this.TxtResultCode.BackColor = System.Drawing.Color.White;
 | |
|             this.TxtResultCode.BorderStyle = System.Windows.Forms.BorderStyle.None;
 | |
|             this.TxtResultCode.DetectUrls = false;
 | |
|             this.TxtResultCode.EmptyText = "转换好后的内容";
 | |
|             this.TxtResultCode.Font = new System.Drawing.Font("Courier New", 10F);
 | |
|             this.TxtResultCode.ForeColor = System.Drawing.Color.Black;
 | |
|             this.TxtResultCode.Location = new System.Drawing.Point(12, 234);
 | |
|             this.TxtResultCode.Name = "TxtResultCode";
 | |
|             this.TxtResultCode.OnlyInputText = true;
 | |
|             this.TxtResultCode.ReadOnly = true;
 | |
|             this.TxtResultCode.Size = new System.Drawing.Size(926, 273);
 | |
|             this.TxtResultCode.TabIndex = 31;
 | |
|             this.TxtResultCode.Text = "";
 | |
|             // 
 | |
|             // RbBigToSmall
 | |
|             // 
 | |
|             this.RbBigToSmall.AutoSize = true;
 | |
|             this.RbBigToSmall.Location = new System.Drawing.Point(473, 32);
 | |
|             this.RbBigToSmall.Name = "RbBigToSmall";
 | |
|             this.RbBigToSmall.Size = new System.Drawing.Size(59, 16);
 | |
|             this.RbBigToSmall.TabIndex = 32;
 | |
|             this.RbBigToSmall.Text = "转小写";
 | |
|             this.RbBigToSmall.UseVisualStyleBackColor = true;
 | |
|             this.RbBigToSmall.CheckedChanged += new System.EventHandler(this.RbBigToSmall_CheckedChanged);
 | |
|             // 
 | |
|             // RbSmallToBig
 | |
|             // 
 | |
|             this.RbSmallToBig.AutoSize = true;
 | |
|             this.RbSmallToBig.Location = new System.Drawing.Point(550, 32);
 | |
|             this.RbSmallToBig.Name = "RbSmallToBig";
 | |
|             this.RbSmallToBig.Size = new System.Drawing.Size(59, 16);
 | |
|             this.RbSmallToBig.TabIndex = 33;
 | |
|             this.RbSmallToBig.Text = "转大写";
 | |
|             this.RbSmallToBig.UseVisualStyleBackColor = true;
 | |
|             this.RbSmallToBig.CheckedChanged += new System.EventHandler(this.RbSmallToBig_CheckedChanged);
 | |
|             // 
 | |
|             // FrmEncode
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(950, 519);
 | |
|             this.Controls.Add(this.RbSmallToBig);
 | |
|             this.Controls.Add(this.RbBigToSmall);
 | |
|             this.Controls.Add(this.TxtResultCode);
 | |
|             this.Controls.Add(this.RbJsonToXML);
 | |
|             this.Controls.Add(this.TxtFromCode);
 | |
|             this.Controls.Add(this.RbSHA512);
 | |
|             this.Controls.Add(this.RbSHA224);
 | |
|             this.Controls.Add(this.RbSHA256);
 | |
|             this.Controls.Add(this.RbSHA1);
 | |
|             this.Controls.Add(this.RbMD5);
 | |
|             this.Controls.Add(this.RbChsToUTF8);
 | |
|             this.Controls.Add(this.RbUTF8ToChs);
 | |
|             this.Controls.Add(this.RbChsToUnicode);
 | |
|             this.Controls.Add(this.RbUnicodeToChs);
 | |
|             this.Controls.Add(this.CbbEncodingCode);
 | |
|             this.Controls.Add(this.RbURLDecode);
 | |
|             this.Controls.Add(this.RbURLEncode);
 | |
|             this.Controls.Add(this.RbBase64Decode);
 | |
|             this.Controls.Add(this.RbBase64Encode);
 | |
|             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
 | |
|             this.Name = "FrmEncode";
 | |
|             this.TabPageContextMenuStrip = this.menuRight1;
 | |
|             this.Text = "编码解码";
 | |
|             this.ResumeLayout(false);
 | |
|             this.PerformLayout();
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         private System.Windows.Forms.RadioButton RbChsToUnicode;
 | |
|         private System.Windows.Forms.RadioButton RbUnicodeToChs;
 | |
|         private ryControls.RyComboBox CbbEncodingCode;
 | |
|         private System.Windows.Forms.RadioButton RbURLDecode;
 | |
|         private System.Windows.Forms.RadioButton RbURLEncode;
 | |
|         private System.Windows.Forms.RadioButton RbBase64Decode;
 | |
|         private System.Windows.Forms.RadioButton RbBase64Encode;
 | |
|         private ryPaiban.Model.MenuRight menuRight1;
 | |
|         private System.Windows.Forms.RadioButton RbChsToUTF8;
 | |
|         private System.Windows.Forms.RadioButton RbUTF8ToChs;
 | |
|         private System.Windows.Forms.RadioButton RbMD5;
 | |
|         private System.Windows.Forms.RadioButton RbSHA1;
 | |
|         private System.Windows.Forms.RadioButton RbSHA256;
 | |
|         private System.Windows.Forms.RadioButton RbSHA224;
 | |
|         private System.Windows.Forms.RadioButton RbSHA512;
 | |
|         private ryControls.Controls.RichTextBox2 TxtFromCode;
 | |
|         private System.Windows.Forms.RadioButton RbJsonToXML;
 | |
|         private ryControls.Controls.RichTextBox2 TxtResultCode;
 | |
|         private System.Windows.Forms.RadioButton RbBigToSmall;
 | |
|         private System.Windows.Forms.RadioButton RbSmallToBig;
 | |
|     }
 | |
| } |