messageboxex_projects_visua.../MessageBoxEx/Form1.Designer.cs
2020-11-26 10:41:55 +01:00

62 lines
2.2 KiB
C#

namespace MyMessageBoxEx
{
partial class Form1
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.buttonShowMessageBox = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// buttonShowMessageBox
//
this.buttonShowMessageBox.Location = new System.Drawing.Point(112, 73);
this.buttonShowMessageBox.Name = "buttonShowMessageBox";
this.buttonShowMessageBox.Size = new System.Drawing.Size(169, 23);
this.buttonShowMessageBox.TabIndex = 0;
this.buttonShowMessageBox.Text = "Show MessageBox";
this.buttonShowMessageBox.UseVisualStyleBackColor = true;
this.buttonShowMessageBox.Click += new System.EventHandler(this.buttonShowMessageBox_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(392, 169);
this.Controls.Add(this.buttonShowMessageBox);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button buttonShowMessageBox;
}
}