SuperDesign/Source/开发辅助工具/Tools/FrmStrToCode.Designer.cs
zilinsoft 993f1ca1a9 ### 2024-12-20 星期五更新
------
#### SuperDesign    V3.0.2412.2001
- *.[新增]新增程序更新日志设置和自动发布功能。
- *.[修复]修复Post数据格式不正确时双击文本框会导致软件闪退的BUG。
2024-12-20 08:15:19 +08:00

142 lines
6.9 KiB
C#

namespace .Tools
{
partial class FrmStrToCode
{
/// <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(FrmStrToCode));
this.RbStrToC = new System.Windows.Forms.RadioButton();
this.RbStrToJS = new System.Windows.Forms.RadioButton();
this.RbStrToQuickJS = new System.Windows.Forms.RadioButton();
this.RbStrToASP = new System.Windows.Forms.RadioButton();
this.TxtFromCode = new ryControls.Controls.RichTextBox2();
this.highlightEditor1 = new ScintillaNETV2.Highlight.HighlightEditor();
this.SuspendLayout();
//
// RbStrToC
//
this.RbStrToC.AutoSize = true;
this.RbStrToC.Checked = true;
this.RbStrToC.Location = new System.Drawing.Point(12, 216);
this.RbStrToC.Name = "RbStrToC";
this.RbStrToC.Size = new System.Drawing.Size(107, 16);
this.RbStrToC.TabIndex = 16;
this.RbStrToC.TabStop = true;
this.RbStrToC.Text = "字符串转C#代码";
this.RbStrToC.UseVisualStyleBackColor = true;
this.RbStrToC.CheckedChanged += new System.EventHandler(this.RbStrToC_CheckedChanged);
//
// RbStrToJS
//
this.RbStrToJS.AutoSize = true;
this.RbStrToJS.Location = new System.Drawing.Point(158, 216);
this.RbStrToJS.Name = "RbStrToJS";
this.RbStrToJS.Size = new System.Drawing.Size(107, 16);
this.RbStrToJS.TabIndex = 17;
this.RbStrToJS.Text = "字符串转JS代码";
this.RbStrToJS.UseVisualStyleBackColor = true;
this.RbStrToJS.CheckedChanged += new System.EventHandler(this.RbStrToJS_CheckedChanged);
//
// RbStrToQuickJS
//
this.RbStrToQuickJS.AutoSize = true;
this.RbStrToQuickJS.Location = new System.Drawing.Point(306, 216);
this.RbStrToQuickJS.Name = "RbStrToQuickJS";
this.RbStrToQuickJS.Size = new System.Drawing.Size(131, 16);
this.RbStrToQuickJS.TabIndex = 18;
this.RbStrToQuickJS.Text = "字符串转极速JS代码";
this.RbStrToQuickJS.UseVisualStyleBackColor = true;
this.RbStrToQuickJS.CheckedChanged += new System.EventHandler(this.RbStrToQuickJS_CheckedChanged);
//
// RbStrToASP
//
this.RbStrToASP.AutoSize = true;
this.RbStrToASP.Location = new System.Drawing.Point(477, 216);
this.RbStrToASP.Name = "RbStrToASP";
this.RbStrToASP.Size = new System.Drawing.Size(113, 16);
this.RbStrToASP.TabIndex = 21;
this.RbStrToASP.Text = "字符串转Asp代码";
this.RbStrToASP.UseVisualStyleBackColor = true;
//
// 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, 3);
this.TxtFromCode.Name = "TxtFromCode";
this.TxtFromCode.OnlyInputText = true;
this.TxtFromCode.Size = new System.Drawing.Size(812, 207);
this.TxtFromCode.TabIndex = 31;
this.TxtFromCode.Text = "";
this.TxtFromCode.WordWrap = false;
this.TxtFromCode.TextChanged += new System.EventHandler(this.TxtFromCode_TextChanged);
this.TxtFromCode.DoubleClick += new System.EventHandler(this.TxtFromCode_DoubleClick);
//
// highlightEditor1
//
this.highlightEditor1.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.highlightEditor1.Location = new System.Drawing.Point(12, 238);
this.highlightEditor1.Name = "highlightEditor1";
this.highlightEditor1.Size = new System.Drawing.Size(812, 245);
this.highlightEditor1.TabIndex = 32;
//
// FrmStrToCode
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(836, 495);
this.Controls.Add(this.highlightEditor1);
this.Controls.Add(this.TxtFromCode);
this.Controls.Add(this.RbStrToASP);
this.Controls.Add(this.RbStrToQuickJS);
this.Controls.Add(this.RbStrToJS);
this.Controls.Add(this.RbStrToC);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FrmStrToCode";
this.Text = "字符串转代码";
this.Load += new System.EventHandler(this.FrmStrToCode_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RadioButton RbStrToC;
private System.Windows.Forms.RadioButton RbStrToJS;
private System.Windows.Forms.RadioButton RbStrToQuickJS;
private System.Windows.Forms.RadioButton RbStrToASP;
private ryControls.Controls.RichTextBox2 TxtFromCode;
private ScintillaNETV2.Highlight.HighlightEditor highlightEditor1;
}
}