/Task Timer/TaskEntryForm.Designer.cs

http://github.com/modah/TaskTimer · C# · 102 lines · 70 code · 6 blank · 26 comment · 3 complexity · 8116ab8e4980c172d01794c7cd517fbe MD5 · raw file

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