namespace Eugen.ESystem.Windows.Forms
{
partial class InfoBox
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
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();
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
this.SuspendLayout();
//
// pictureBox
//
this.pictureBox.Image = global::Eugen.ESystem.Windows.Forms.Pictures.Information;
this.pictureBox.Location = new System.Drawing.Point(20, 20);
this.pictureBox.Name = "pictureBox";
this.pictureBox.Size = new System.Drawing.Size(32, 32);
this.pictureBox.TabIndex = 0;
this.pictureBox.TabStop = false;
//
// labelTitle
//
this.labelTitle.AutoSize = true;
this.labelTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 28F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelTitle.Location = new System.Drawing.Point(70, 15);
this.labelTitle.Name = "labelTitle";
this.labelTitle.Size = new System.Drawing.Size(98, 44);
this.labelTitle.TabIndex = 4;
this.labelTitle.Text = "Title";
//
// labelHeaderRow1
//
this.labelHeaderRow1.AutoSize = true;
this.labelHeaderRow1.Location = new System.Drawing.Point(78, 80);
this.labelHeaderRow1.Name = "labelHeaderRow1";
this.labelHeaderRow1.Size = new System.Drawing.Size(36, 13);
this.labelHeaderRow1.TabIndex = 5;
this.labelHeaderRow1.Text = "Zeile1";
//
// labelHeaderRow2
//
this.labelHeaderRow2.AutoSize = true;
this.labelHeaderRow2.Location = new System.Drawing.Point(78, 93);
this.labelHeaderRow2.Name = "labelHeaderRow2";
this.labelHeaderRow2.Size = new System.Drawing.Size(39, 13);
this.labelHeaderRow2.TabIndex = 6;
this.labelHeaderRow2.Text = "Zeile 2";
//
// labelHeaderRow3
//
this.labelHeaderRow3.AutoSize = true;
this.labelHeaderRow3.Location = new System.Drawing.Point(78, 106);
this.labelHeaderRow3.Name = "labelHeaderRow3";
this.labelHeaderRow3.Size = new System.Drawing.Size(39, 13);
this.labelHeaderRow3.TabIndex = 7;
this.labelHeaderRow3.Text = "Zeile 3";
//
// textBox
//
this.textBox.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.textBox.Location = new System.Drawing.Point(12, 140);
this.textBox.Multiline = true;
this.textBox.Name = "textBox";
this.textBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBox.Size = new System.Drawing.Size(668, 288);
this.textBox.TabIndex = 3;
//
// buttonClose1
//
this.buttonClose1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonClose1.Location = new System.Drawing.Point(605, 434);
this.buttonClose1.Name = "buttonClose1";
this.buttonClose1.Size = new System.Drawing.Size(75, 23);
this.buttonClose1.TabIndex = 1;
this.buttonClose1.Text = "Schließen";
this.buttonClose1.UseVisualStyleBackColor = true;
this.buttonClose1.Click += new System.EventHandler(this.buttonClose1_Click);
//
// buttonClose2
//
this.buttonClose2.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.buttonClose2.Location = new System.Drawing.Point(309, 434);
this.buttonClose2.Name = "buttonClose2";
this.buttonClose2.Size = new System.Drawing.Size(75, 23);
this.buttonClose2.TabIndex = 1;
this.buttonClose2.Text = "Schließen";
this.buttonClose2.UseVisualStyleBackColor = true;
this.buttonClose2.Click += new System.EventHandler(this.buttonClose2_Click);
//
// buttonExport
//
this.buttonExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.buttonExport.Location = new System.Drawing.Point(12, 434);
this.buttonExport.Name = "buttonExport";
this.buttonExport.Size = new System.Drawing.Size(75, 23);
this.buttonExport.TabIndex = 2;
this.buttonExport.Text = "Exportieren";
this.buttonExport.UseVisualStyleBackColor = true;
this.buttonExport.Click += new System.EventHandler(this.buttonExport_Click);
//
// saveFileDialog
//
this.saveFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.saveFileDialog_FileOk);
//
// InfoBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(692, 469);
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.MinimumSize = new System.Drawing.Size(400, 300);
this.Name = "InfoBox";
this.Text = "WindowTitle";
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
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;
}
}