Advertisement
Guest User

MainForm.Designer.cs

a guest
Dec 5th, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. namespace Simple_Benchmark
  2. {
  3.     partial class MainForm
  4.     {
  5.         /// <summary>
  6.         /// Erforderliche Designervariable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.  
  10.         /// <summary>
  11.         /// Verwendete Ressourcen bereinigen.
  12.         /// </summary>
  13.         /// <param name=%26quot%3Bdisposing%26quot%3B%26gt%3BTrue%2C wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
  14.         protected override void Dispose(bool disposing)
  15.         {
  16.             if (disposing && (components != null))
  17.             {
  18.                 components.Dispose();
  19.             }
  20.             base.Dispose(disposing);
  21.         }
  22.  
  23.         #region Vom Windows Form-Designer generierter Code
  24.  
  25.         /// <summary>
  26.         /// Erforderliche Methode für die Designerunterstützung.
  27.         /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
  28.         /// </summary>
  29.         private void InitializeComponent()
  30.         {
  31.             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  32.             this.textBox1 = new System.Windows.Forms.TextBox();
  33.             this.berechnenButton = new System.Windows.Forms.Button();
  34.             this.label2 = new System.Windows.Forms.Label();
  35.             this.zeitLabel = new System.Windows.Forms.Label();
  36.             this.label3 = new System.Windows.Forms.Label();
  37.             this.cpuAuslastungLabel = new System.Windows.Forms.Label();
  38.             this.label1 = new System.Windows.Forms.Label();
  39.             this.SuspendLayout();
  40.             //
  41.             // textBox1
  42.             //
  43.             this.textBox1.Location = new System.Drawing.Point(47, 69);
  44.             this.textBox1.name=%26quot%3BtextBox1%26quot%3B%3B
  45.             this.textBox1.Size = new System.Drawing.Size(166, 20);
  46.             this.textBox1.TabIndex = 0;
  47.             this.textBox1.Text = "100000000";
  48.             //
  49.             // berechnenButton
  50.             //
  51.             this.berechnenButton.Location = new System.Drawing.Point(63, 95);
  52.             this.berechnenButton.name=%26quot%3BberechnenButton%26quot%3B%3B
  53.             this.berechnenButton.Size = new System.Drawing.Size(75, 23);
  54.             this.berechnenButton.TabIndex = 1;
  55.             this.berechnenButton.Text = "Berechnen!";
  56.             this.berechnenButton.UseVisualStyleBackColor = true;
  57.             this.berechnenButton.Click += new System.EventHandler(this.berechnenButton_Click);
  58.             //
  59.             // label2
  60.             //
  61.             this.label2.AutoSize = true;
  62.             this.label2.Location = new System.Drawing.Point(6, 9);
  63.             this.label2.name=%26quot%3Blabel2%26quot%3B%3B
  64.             this.label2.Size = new System.Drawing.Size(28, 13);
  65.             this.label2.TabIndex = 3;
  66.             this.label2.Text = "Zeit:";
  67.             //
  68.             // zeitLabel
  69.             //
  70.             this.zeitLabel.AutoSize = true;
  71.             this.zeitLabel.Location = new System.Drawing.Point(184, 9);
  72.             this.zeitLabel.name=%26quot%3BzeitLabel%26quot%3B%3B
  73.             this.zeitLabel.Size = new System.Drawing.Size(16, 13);
  74.             this.zeitLabel.TabIndex = 4;
  75.             this.zeitLabel.Text = "---";
  76.             //
  77.             // label3
  78.             //
  79.             this.label3.AutoSize = true;
  80.             this.label3.Location = new System.Drawing.Point(6, 37);
  81.             this.label3.name=%26quot%3Blabel3%26quot%3B%3B
  82.             this.label3.Size = new System.Drawing.Size(87, 13);
  83.             this.label3.TabIndex = 6;
  84.             this.label3.Text = "CPU Auslastung:";
  85.             //
  86.             // cpuAuslastungLabel
  87.             //
  88.             this.cpuAuslastungLabel.AutoSize = true;
  89.             this.cpuAuslastungLabel.Location = new System.Drawing.Point(184, 37);
  90.             this.cpuAuslastungLabel.name=%26quot%3BcpuAuslastungLabel%26quot%3B%3B
  91.             this.cpuAuslastungLabel.Size = new System.Drawing.Size(16, 13);
  92.             this.cpuAuslastungLabel.TabIndex = 7;
  93.             this.cpuAuslastungLabel.Text = "---";
  94.             //
  95.             // label1
  96.             //
  97.             this.label1.AutoSize = true;
  98.             this.label1.Location = new System.Drawing.Point(6, 72);
  99.             this.label1.name=%26quot%3Blabel1%26quot%3B%3B
  100.             this.label1.Size = new System.Drawing.Size(33, 13);
  101.             this.label1.TabIndex = 11;
  102.             this.label1.Text = "Wert:";
  103.             //
  104.             // Form1
  105.             //
  106.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  107.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  108.             this.ClientSize = new System.Drawing.Size(220, 127);
  109.             this.Controls.Add(this.label1);
  110.             this.Controls.Add(this.cpuAuslastungLabel);
  111.             this.Controls.Add(this.label3);
  112.             this.Controls.Add(this.zeitLabel);
  113.             this.Controls.Add(this.label2);
  114.             this.Controls.Add(this.berechnenButton);
  115.             this.Controls.Add(this.textBox1);
  116.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  117.             this.MaximizeBox = false;
  118.             this.MaximumSize = new System.Drawing.Size(236, 165);
  119.             this.MinimumSize = new System.Drawing.Size(236, 165);
  120.             this.name=%26quot%3BForm1%26quot%3B%3B
  121.             this.Text = "Benchmark";
  122.             this.Load += new System.EventHandler(this.Main_Load);
  123.             this.ResumeLayout(false);
  124.             this.PerformLayout();
  125.  
  126.         }
  127.  
  128.         #endregion
  129.  
  130.         private System.Windows.Forms.TextBox textBox1;
  131.         private System.Windows.Forms.Button berechnenButton;
  132.         private System.Windows.Forms.Label label2;
  133.         private System.Windows.Forms.Label zeitLabel;
  134.         private System.Windows.Forms.Label label3;
  135.         private System.Windows.Forms.Label cpuAuslastungLabel;
  136.         private System.Windows.Forms.Label label1;
  137.     }
  138. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement