/Task Timer/TaskEntryForm.Designer.cs
C# | 102 lines | 70 code | 6 blank | 26 comment | 3 complexity | 8116ab8e4980c172d01794c7cd517fbe MD5 | raw file
1namespace Task_Timer 2{ 3 partial class TaskEntryForm 4 { 5 /// <summary> 6 /// Required designer variable. 7 /// </summary> 8 private System.ComponentModel.IContainer components = null; 9 10 /// <summary> 11 /// Clean up any resources being used. 12 /// </summary> 13 /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Windows Form Designer generated code 24 25 /// <summary> 26 /// Required method for Designer support - do not modify 27 /// the contents of this method with the code editor. 28 /// </summary> 29 private void InitializeComponent() 30 { 31 this.label1 = new System.Windows.Forms.Label(); 32 this.textBoxTaskName = new System.Windows.Forms.TextBox(); 33 this.buttonOK = new System.Windows.Forms.Button(); 34 this.buttonCancel = new System.Windows.Forms.Button(); 35 this.SuspendLayout(); 36 // 37 // label1 38 // 39 this.label1.AutoSize = true; 40 this.label1.Location = new System.Drawing.Point(12, 15); 41 this.label1.Name = "label1"; 42 this.label1.Size = new System.Drawing.Size(62, 13); 43 this.label1.TabIndex = 0; 44 this.label1.Text = "Task Name"; 45 // 46 // textBoxTaskName 47 // 48 this.textBoxTaskName.Location = new System.Drawing.Point(80, 12); 49 this.textBoxTaskName.Name = "textBoxTaskName"; 50 this.textBoxTaskName.Size = new System.Drawing.Size(475, 20); 51 this.textBoxTaskName.TabIndex = 1; 52 // 53 // buttonOK 54 // 55 this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK; 56 this.buttonOK.Location = new System.Drawing.Point(399, 47); 57 this.buttonOK.Name = "buttonOK"; 58 this.buttonOK.Size = new System.Drawing.Size(75, 23); 59 this.buttonOK.TabIndex = 2; 60 this.buttonOK.Text = "OK"; 61 this.buttonOK.UseVisualStyleBackColor = true; 62 // 63 // buttonCancel 64 // 65 this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; 66 this.buttonCancel.Location = new System.Drawing.Point(480, 47); 67 this.buttonCancel.Name = "buttonCancel"; 68 this.buttonCancel.Size = new System.Drawing.Size(75, 23); 69 this.buttonCancel.TabIndex = 3; 70 this.buttonCancel.Text = "Abbrechen"; 71 this.buttonCancel.UseVisualStyleBackColor = true; 72 // 73 // TaskEntryForm 74 // 75 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 76 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 77 this.ClientSize = new System.Drawing.Size(567, 82); 78 this.Controls.Add(this.buttonCancel); 79 this.Controls.Add(this.buttonOK); 80 this.Controls.Add(this.textBoxTaskName); 81 this.Controls.Add(this.label1); 82 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; 83 this.KeyPreview = true; 84 this.MaximizeBox = false; 85 this.MinimizeBox = false; 86 this.Name = "TaskEntryForm"; 87 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 88 this.Text = "Task umbenennen"; 89 this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TaskEntryForm_KeyPress); 90 this.ResumeLayout(false); 91 this.PerformLayout(); 92 93 } 94 95 #endregion 96 97 private System.Windows.Forms.Label label1; 98 private System.Windows.Forms.TextBox textBoxTaskName; 99 private System.Windows.Forms.Button buttonOK; 100 private System.Windows.Forms.Button buttonCancel; 101 } 102}