104 lines
4.4 KiB
C#
104 lines
4.4 KiB
C#
namespace Test_Form
|
|
{
|
|
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.buttonLeft = new System.Windows.Forms.Button();
|
|
this.pictureBoxIcon = new System.Windows.Forms.PictureBox();
|
|
this.buttonRight = new System.Windows.Forms.Button();
|
|
this.buttonCenter = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxIcon)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonLeft
|
|
//
|
|
this.buttonLeft.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.buttonLeft.Location = new System.Drawing.Point(12, 204);
|
|
this.buttonLeft.Name = "buttonLeft";
|
|
this.buttonLeft.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonLeft.TabIndex = 0;
|
|
this.buttonLeft.Text = "Change Size";
|
|
this.buttonLeft.UseVisualStyleBackColor = true;
|
|
this.buttonLeft.Click += new System.EventHandler(this.buttonChangeSize_Click);
|
|
//
|
|
// pictureBoxIcon
|
|
//
|
|
this.pictureBoxIcon.Location = new System.Drawing.Point(20, 20);
|
|
this.pictureBoxIcon.Name = "pictureBoxIcon";
|
|
this.pictureBoxIcon.Size = new System.Drawing.Size(32, 32);
|
|
this.pictureBoxIcon.TabIndex = 1;
|
|
this.pictureBoxIcon.TabStop = false;
|
|
//
|
|
// buttonRight
|
|
//
|
|
this.buttonRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonRight.Location = new System.Drawing.Point(265, 204);
|
|
this.buttonRight.Name = "buttonRight";
|
|
this.buttonRight.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonRight.TabIndex = 2;
|
|
this.buttonRight.Text = "Button3";
|
|
this.buttonRight.UseVisualStyleBackColor = true;
|
|
this.buttonRight.Click += new System.EventHandler(this.buttonRight_Click);
|
|
//
|
|
// buttonCenter
|
|
//
|
|
this.buttonCenter.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
|
|
this.buttonCenter.Location = new System.Drawing.Point(139, 204);
|
|
this.buttonCenter.Name = "buttonCenter";
|
|
this.buttonCenter.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonCenter.TabIndex = 3;
|
|
this.buttonCenter.Text = "Button2";
|
|
this.buttonCenter.UseVisualStyleBackColor = true;
|
|
this.buttonCenter.Click += new System.EventHandler(this.buttonCenter_Click);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
|
this.ClientSize = new System.Drawing.Size(352, 239);
|
|
this.Controls.Add(this.buttonCenter);
|
|
this.Controls.Add(this.buttonRight);
|
|
this.Controls.Add(this.pictureBoxIcon);
|
|
this.Controls.Add(this.buttonLeft);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxIcon)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonLeft;
|
|
private System.Windows.Forms.PictureBox pictureBoxIcon;
|
|
private System.Windows.Forms.Button buttonRight;
|
|
private System.Windows.Forms.Button buttonCenter;
|
|
}
|
|
}
|
|
|