------ #### SuperDesign V3.0.2412.2001 - *.[新增]新增程序更新日志设置和自动发布功能。 - *.[修复]修复Post数据格式不正确时双击文本框会导致软件闪退的BUG。
92 lines
3.7 KiB
C#
92 lines
3.7 KiB
C#
namespace ScintillaNET_FindReplaceDialog
|
|
{
|
|
partial class FrmFinding
|
|
{
|
|
/// <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.progressBar1 = new System.Windows.Forms.ProgressBar();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.BtnClose = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// progressBar1
|
|
//
|
|
this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.progressBar1.Location = new System.Drawing.Point(12, 12);
|
|
this.progressBar1.Name = "progressBar1";
|
|
this.progressBar1.Size = new System.Drawing.Size(578, 23);
|
|
this.progressBar1.TabIndex = 0;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 38);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(113, 12);
|
|
this.label1.TabIndex = 1;
|
|
this.label1.Text = "状态:正在查找中...";
|
|
//
|
|
// BtnClose
|
|
//
|
|
this.BtnClose.Location = new System.Drawing.Point(258, 62);
|
|
this.BtnClose.Name = "BtnClose";
|
|
this.BtnClose.Size = new System.Drawing.Size(72, 25);
|
|
this.BtnClose.TabIndex = 2;
|
|
this.BtnClose.Text = "关闭";
|
|
this.BtnClose.UseVisualStyleBackColor = true;
|
|
this.BtnClose.Click += new System.EventHandler(this.BtnClose_Click);
|
|
//
|
|
// FrmFinding
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(602, 93);
|
|
this.Controls.Add(this.BtnClose);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.progressBar1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.MaximizeBox = false;
|
|
this.Name = "FrmFinding";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "正在查找...";
|
|
this.TopMost = true;
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmFinding_FormClosing);
|
|
this.Load += new System.EventHandler(this.FrmFinding_Load);
|
|
this.Shown += new System.EventHandler(this.FrmFinding_Shown);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ProgressBar progressBar1;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button BtnClose;
|
|
}
|
|
} |