241 lines
11 KiB
C#
241 lines
11 KiB
C#
namespace Eugen.ESystem.Windows.Forms
|
|
{
|
|
partial class ExtendedInfoBox
|
|
{
|
|
/// <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(ExtendedInfoBox));
|
|
this.pictureBox = new System.Windows.Forms.PictureBox();
|
|
this.labelTitle = new System.Windows.Forms.Label();
|
|
this.labelHeaderRow1 = new System.Windows.Forms.Label();
|
|
this.labelHeaderRow2 = new System.Windows.Forms.Label();
|
|
this.labelHeaderRow3 = new System.Windows.Forms.Label();
|
|
this.textBox = new System.Windows.Forms.TextBox();
|
|
this.buttonClose1 = new System.Windows.Forms.Button();
|
|
this.buttonClose2 = new System.Windows.Forms.Button();
|
|
this.buttonExport = new System.Windows.Forms.Button();
|
|
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
|
|
this.groupBoxFindReplace = new System.Windows.Forms.GroupBox();
|
|
this.groupBoxReplace = new System.Windows.Forms.GroupBox();
|
|
this.buttonReplaceAll = new System.Windows.Forms.Button();
|
|
this.buttonReplace = new System.Windows.Forms.Button();
|
|
this.textBoxReplace = new System.Windows.Forms.TextBox();
|
|
this.groupBoxFind = new System.Windows.Forms.GroupBox();
|
|
this.checkBoxCaseSensitive = new System.Windows.Forms.CheckBox();
|
|
this.buttonNext = new System.Windows.Forms.Button();
|
|
this.buttonPrevious = new System.Windows.Forms.Button();
|
|
this.textBoxFind = new System.Windows.Forms.TextBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
|
|
this.groupBoxFindReplace.SuspendLayout();
|
|
this.groupBoxReplace.SuspendLayout();
|
|
this.groupBoxFind.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// pictureBox
|
|
//
|
|
resources.ApplyResources(this.pictureBox, "pictureBox");
|
|
this.pictureBox.Image = global::Eugen.ESystem.Windows.Forms.Pictures.Information;
|
|
this.pictureBox.Name = "pictureBox";
|
|
this.pictureBox.TabStop = false;
|
|
//
|
|
// labelTitle
|
|
//
|
|
resources.ApplyResources(this.labelTitle, "labelTitle");
|
|
this.labelTitle.Name = "labelTitle";
|
|
//
|
|
// labelHeaderRow1
|
|
//
|
|
resources.ApplyResources(this.labelHeaderRow1, "labelHeaderRow1");
|
|
this.labelHeaderRow1.Name = "labelHeaderRow1";
|
|
//
|
|
// labelHeaderRow2
|
|
//
|
|
resources.ApplyResources(this.labelHeaderRow2, "labelHeaderRow2");
|
|
this.labelHeaderRow2.Name = "labelHeaderRow2";
|
|
//
|
|
// labelHeaderRow3
|
|
//
|
|
resources.ApplyResources(this.labelHeaderRow3, "labelHeaderRow3");
|
|
this.labelHeaderRow3.Name = "labelHeaderRow3";
|
|
//
|
|
// textBox
|
|
//
|
|
resources.ApplyResources(this.textBox, "textBox");
|
|
this.textBox.Name = "textBox";
|
|
//
|
|
// buttonClose1
|
|
//
|
|
resources.ApplyResources(this.buttonClose1, "buttonClose1");
|
|
this.buttonClose1.Name = "buttonClose1";
|
|
this.buttonClose1.UseVisualStyleBackColor = true;
|
|
this.buttonClose1.Click += new System.EventHandler(this.buttonClose1_Click);
|
|
//
|
|
// buttonClose2
|
|
//
|
|
resources.ApplyResources(this.buttonClose2, "buttonClose2");
|
|
this.buttonClose2.Name = "buttonClose2";
|
|
this.buttonClose2.UseVisualStyleBackColor = true;
|
|
this.buttonClose2.Click += new System.EventHandler(this.buttonClose2_Click);
|
|
//
|
|
// buttonExport
|
|
//
|
|
resources.ApplyResources(this.buttonExport, "buttonExport");
|
|
this.buttonExport.Name = "buttonExport";
|
|
this.buttonExport.UseVisualStyleBackColor = true;
|
|
this.buttonExport.Click += new System.EventHandler(this.buttonExport_Click);
|
|
//
|
|
// saveFileDialog
|
|
//
|
|
resources.ApplyResources(this.saveFileDialog, "saveFileDialog");
|
|
this.saveFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.saveFileDialog_FileOk);
|
|
//
|
|
// groupBoxFindReplace
|
|
//
|
|
resources.ApplyResources(this.groupBoxFindReplace, "groupBoxFindReplace");
|
|
this.groupBoxFindReplace.Controls.Add(this.groupBoxReplace);
|
|
this.groupBoxFindReplace.Controls.Add(this.groupBoxFind);
|
|
this.groupBoxFindReplace.Name = "groupBoxFindReplace";
|
|
this.groupBoxFindReplace.TabStop = false;
|
|
//
|
|
// groupBoxReplace
|
|
//
|
|
resources.ApplyResources(this.groupBoxReplace, "groupBoxReplace");
|
|
this.groupBoxReplace.Controls.Add(this.buttonReplaceAll);
|
|
this.groupBoxReplace.Controls.Add(this.buttonReplace);
|
|
this.groupBoxReplace.Controls.Add(this.textBoxReplace);
|
|
this.groupBoxReplace.Name = "groupBoxReplace";
|
|
this.groupBoxReplace.TabStop = false;
|
|
//
|
|
// buttonReplaceAll
|
|
//
|
|
resources.ApplyResources(this.buttonReplaceAll, "buttonReplaceAll");
|
|
this.buttonReplaceAll.Name = "buttonReplaceAll";
|
|
this.buttonReplaceAll.UseVisualStyleBackColor = true;
|
|
this.buttonReplaceAll.Click += new System.EventHandler(this.buttonReplaceAll_Click);
|
|
//
|
|
// buttonReplace
|
|
//
|
|
resources.ApplyResources(this.buttonReplace, "buttonReplace");
|
|
this.buttonReplace.Name = "buttonReplace";
|
|
this.buttonReplace.UseVisualStyleBackColor = true;
|
|
this.buttonReplace.Click += new System.EventHandler(this.buttonReplace_Click);
|
|
//
|
|
// textBoxReplace
|
|
//
|
|
resources.ApplyResources(this.textBoxReplace, "textBoxReplace");
|
|
this.textBoxReplace.Name = "textBoxReplace";
|
|
this.textBoxReplace.TextChanged += new System.EventHandler(this.textBoxReplace_TextChanged);
|
|
this.textBoxReplace.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBoxReplace_KeyDown);
|
|
//
|
|
// groupBoxFind
|
|
//
|
|
resources.ApplyResources(this.groupBoxFind, "groupBoxFind");
|
|
this.groupBoxFind.Controls.Add(this.checkBoxCaseSensitive);
|
|
this.groupBoxFind.Controls.Add(this.buttonNext);
|
|
this.groupBoxFind.Controls.Add(this.buttonPrevious);
|
|
this.groupBoxFind.Controls.Add(this.textBoxFind);
|
|
this.groupBoxFind.Name = "groupBoxFind";
|
|
this.groupBoxFind.TabStop = false;
|
|
//
|
|
// checkBoxCaseSensitive
|
|
//
|
|
resources.ApplyResources(this.checkBoxCaseSensitive, "checkBoxCaseSensitive");
|
|
this.checkBoxCaseSensitive.Name = "checkBoxCaseSensitive";
|
|
this.checkBoxCaseSensitive.UseVisualStyleBackColor = true;
|
|
this.checkBoxCaseSensitive.CheckedChanged += new System.EventHandler(this.checkBoxCaseSensitive_CheckedChanged);
|
|
//
|
|
// buttonNext
|
|
//
|
|
resources.ApplyResources(this.buttonNext, "buttonNext");
|
|
this.buttonNext.Name = "buttonNext";
|
|
this.buttonNext.UseVisualStyleBackColor = true;
|
|
this.buttonNext.Click += new System.EventHandler(this.buttonNext_Click);
|
|
//
|
|
// buttonPrevious
|
|
//
|
|
resources.ApplyResources(this.buttonPrevious, "buttonPrevious");
|
|
this.buttonPrevious.Name = "buttonPrevious";
|
|
this.buttonPrevious.UseVisualStyleBackColor = true;
|
|
this.buttonPrevious.Click += new System.EventHandler(this.buttonPrevious_Click);
|
|
//
|
|
// textBoxFind
|
|
//
|
|
resources.ApplyResources(this.textBoxFind, "textBoxFind");
|
|
this.textBoxFind.Name = "textBoxFind";
|
|
this.textBoxFind.TextChanged += new System.EventHandler(this.textBoxFind_TextChanged);
|
|
this.textBoxFind.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBoxFind_KeyDown);
|
|
//
|
|
// ExtendedInfoBox
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.groupBoxFindReplace);
|
|
this.Controls.Add(this.buttonExport);
|
|
this.Controls.Add(this.buttonClose2);
|
|
this.Controls.Add(this.buttonClose1);
|
|
this.Controls.Add(this.textBox);
|
|
this.Controls.Add(this.labelHeaderRow3);
|
|
this.Controls.Add(this.labelHeaderRow2);
|
|
this.Controls.Add(this.labelHeaderRow1);
|
|
this.Controls.Add(this.labelTitle);
|
|
this.Controls.Add(this.pictureBox);
|
|
this.Name = "ExtendedInfoBox";
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
|
this.groupBoxFindReplace.ResumeLayout(false);
|
|
this.groupBoxReplace.ResumeLayout(false);
|
|
this.groupBoxReplace.PerformLayout();
|
|
this.groupBoxFind.ResumeLayout(false);
|
|
this.groupBoxFind.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.PictureBox pictureBox;
|
|
private System.Windows.Forms.Label labelTitle;
|
|
private System.Windows.Forms.Label labelHeaderRow1;
|
|
private System.Windows.Forms.Label labelHeaderRow2;
|
|
private System.Windows.Forms.Label labelHeaderRow3;
|
|
private System.Windows.Forms.TextBox textBox;
|
|
private System.Windows.Forms.Button buttonClose1;
|
|
private System.Windows.Forms.Button buttonClose2;
|
|
private System.Windows.Forms.Button buttonExport;
|
|
private System.Windows.Forms.SaveFileDialog saveFileDialog;
|
|
private System.Windows.Forms.GroupBox groupBoxFindReplace;
|
|
private System.Windows.Forms.GroupBox groupBoxReplace;
|
|
private System.Windows.Forms.Button buttonReplaceAll;
|
|
private System.Windows.Forms.Button buttonReplace;
|
|
private System.Windows.Forms.TextBox textBoxReplace;
|
|
private System.Windows.Forms.GroupBox groupBoxFind;
|
|
private System.Windows.Forms.CheckBox checkBoxCaseSensitive;
|
|
private System.Windows.Forms.Button buttonNext;
|
|
private System.Windows.Forms.Button buttonPrevious;
|
|
private System.Windows.Forms.TextBox textBoxFind;
|
|
}
|
|
} |