73 lines
2.5 KiB
C#
73 lines
2.5 KiB
C#
namespace Eugen.ESystem.Windows.Forms
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <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.button = new System.Windows.Forms.Button();
|
|
this.labelInfo = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// button
|
|
//
|
|
this.button.Location = new System.Drawing.Point(13, 234);
|
|
this.button.Name = "button";
|
|
this.button.Size = new System.Drawing.Size(267, 23);
|
|
this.button.TabIndex = 0;
|
|
this.button.Text = "Über anzeigen";
|
|
this.button.UseVisualStyleBackColor = true;
|
|
this.button.Click += new System.EventHandler(this.button_Click);
|
|
//
|
|
// labelInfo
|
|
//
|
|
this.labelInfo.AutoSize = true;
|
|
this.labelInfo.Location = new System.Drawing.Point(13, 13);
|
|
this.labelInfo.Name = "labelInfo";
|
|
this.labelInfo.Size = new System.Drawing.Size(16, 13);
|
|
this.labelInfo.TabIndex = 1;
|
|
this.labelInfo.Text = "...";
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(292, 269);
|
|
this.Controls.Add(this.labelInfo);
|
|
this.Controls.Add(this.button);
|
|
this.Name = "Form1";
|
|
this.Text = "Test_About";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button button;
|
|
private System.Windows.Forms.Label labelInfo;
|
|
}
|
|
} |