------ #### SuperDesign V3.0.2412.2001 - *.[新增]新增程序更新日志设置和自动发布功能。 - *.[修复]修复Post数据格式不正确时双击文本框会导致软件闪退的BUG。
129 lines
4.9 KiB
C#
129 lines
4.9 KiB
C#
using ScintillaNET;
|
|
|
|
namespace ScintillaDiff
|
|
{
|
|
partial class ScintillaDiffControl
|
|
{
|
|
/// <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 Component 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.scMain = new System.Windows.Forms.SplitContainer();
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.panel2 = new System.Windows.Forms.Panel();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.scMain)).BeginInit();
|
|
this.scMain.Panel1.SuspendLayout();
|
|
this.scMain.Panel2.SuspendLayout();
|
|
this.scMain.SuspendLayout();
|
|
this.panel1.SuspendLayout();
|
|
this.panel2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// scMain
|
|
//
|
|
this.scMain.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.scMain.Location = new System.Drawing.Point(0, 0);
|
|
this.scMain.Name = "scMain";
|
|
//
|
|
// scMain.Panel1
|
|
//
|
|
this.scMain.Panel1.Controls.Add(this.panel1);
|
|
//
|
|
// scMain.Panel2
|
|
//
|
|
this.scMain.Panel2.Controls.Add(this.panel2);
|
|
this.scMain.Size = new System.Drawing.Size(918, 454);
|
|
this.scMain.SplitterDistance = 434;
|
|
this.scMain.TabIndex = 0;
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Controls.Add(this.label1);
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.panel1.Location = new System.Drawing.Point(0, 0);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(434, 23);
|
|
this.panel1.TabIndex = 1;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(7, 5);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(35, 12);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "文本1";
|
|
//
|
|
// panel2
|
|
//
|
|
this.panel2.Controls.Add(this.label2);
|
|
this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.panel2.Location = new System.Drawing.Point(0, 0);
|
|
this.panel2.Name = "panel2";
|
|
this.panel2.Size = new System.Drawing.Size(480, 23);
|
|
this.panel2.TabIndex = 2;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(7, 5);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(35, 12);
|
|
this.label2.TabIndex = 1;
|
|
this.label2.Text = "文本2";
|
|
//
|
|
// ScintillaDiffControl
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.scMain);
|
|
this.Name = "ScintillaDiffControl";
|
|
this.Size = new System.Drawing.Size(918, 454);
|
|
this.Load += new System.EventHandler(this.ScintillaDiffControl_Load);
|
|
this.SizeChanged += new System.EventHandler(this.ScintillaDiffer_SizeChanged);
|
|
this.scMain.Panel1.ResumeLayout(false);
|
|
this.scMain.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.scMain)).EndInit();
|
|
this.scMain.ResumeLayout(false);
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
this.panel2.ResumeLayout(false);
|
|
this.panel2.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.SplitContainer scMain;
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.Panel panel2;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
}
|
|
}
|