SheetPlayer/SheetPlayer/mainForm.Designer.cs

82 lines
3.9 KiB
C#

namespace SheetPlayer {
partial class mainForm {
/// <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.components = new System.ComponentModel.Container();
this.cmdBakeForm = new System.Windows.Forms.Button();
this.drawCycle = new System.Windows.Forms.Timer(this.components);
this.SuspendLayout();
//
// cmdBakeForm
//
this.cmdBakeForm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cmdBakeForm.BackColor = System.Drawing.SystemColors.ActiveCaption;
this.cmdBakeForm.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(63)))), ((int)(((byte)(116)))), ((int)(((byte)(197)))));
this.cmdBakeForm.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(236)))), ((int)(((byte)(204)))));
this.cmdBakeForm.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.cmdBakeForm.Location = new System.Drawing.Point(468, 244);
this.cmdBakeForm.Name = "cmdBakeForm";
this.cmdBakeForm.Size = new System.Drawing.Size(32, 32);
this.cmdBakeForm.TabIndex = 0;
this.cmdBakeForm.UseVisualStyleBackColor = false;
this.cmdBakeForm.Click += new System.EventHandler(this.cmdBakeForm_Click);
//
// drawCycle
//
this.drawCycle.Enabled = true;
this.drawCycle.Interval = 80;
this.drawCycle.Tick += new System.EventHandler(this.drawCycle_Tick);
//
// mainForm
//
this.AllowDrop = true;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(512, 288);
this.Controls.Add(this.cmdBakeForm);
this.DoubleBuffered = true;
this.KeyPreview = true;
this.Name = "mainForm";
this.Text = "SheetPlayer";
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.mainForm_DragDrop);
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.mainForm_DragEnter);
this.Paint += new System.Windows.Forms.PaintEventHandler(this.mainForm_Paint);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.mainForm_KeyDown);
this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.mainForm_KeyUp);
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.mainForm_MouseDown);
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.mainForm_MouseMove);
this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.mainForm_MouseUp);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button cmdBakeForm;
private System.Windows.Forms.Timer drawCycle;
}
}