PageRenderTime 27ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/WorldView/FormEntryBox.Designer.cs

#
C# | 104 lines | 72 code | 6 blank | 26 comment | 3 complexity | 4bdc3ec4f4c3139d4f718bb66dfa9d3c MD5 | raw file
  1. namespace MoreTerra
  2. {
  3. partial class FormEntryBox
  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.labelMessage = new System.Windows.Forms.Label();
  29. this.buttonCancel = new System.Windows.Forms.Button();
  30. this.buttonOk = new System.Windows.Forms.Button();
  31. this.textBoxItem = new System.Windows.Forms.TextBox();
  32. this.SuspendLayout();
  33. //
  34. // labelMessage
  35. //
  36. this.labelMessage.Location = new System.Drawing.Point(12, 18);
  37. this.labelMessage.Name = "labelMessage";
  38. this.labelMessage.Size = new System.Drawing.Size(320, 45);
  39. this.labelMessage.TabIndex = 0;
  40. this.labelMessage.Text = "labelMessage";
  41. //
  42. // buttonCancel
  43. //
  44. this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  45. this.buttonCancel.Location = new System.Drawing.Point(187, 105);
  46. this.buttonCancel.Name = "buttonCancel";
  47. this.buttonCancel.Size = new System.Drawing.Size(75, 23);
  48. this.buttonCancel.TabIndex = 2;
  49. this.buttonCancel.Text = "Cancel";
  50. this.buttonCancel.UseVisualStyleBackColor = true;
  51. this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
  52. //
  53. // buttonOk
  54. //
  55. this.buttonOk.Location = new System.Drawing.Point(72, 105);
  56. this.buttonOk.Name = "buttonOk";
  57. this.buttonOk.Size = new System.Drawing.Size(75, 23);
  58. this.buttonOk.TabIndex = 1;
  59. this.buttonOk.Text = "Ok";
  60. this.buttonOk.UseVisualStyleBackColor = true;
  61. this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
  62. //
  63. // textBoxItem
  64. //
  65. this.textBoxItem.Location = new System.Drawing.Point(15, 66);
  66. this.textBoxItem.Name = "textBoxItem";
  67. this.textBoxItem.Size = new System.Drawing.Size(317, 20);
  68. this.textBoxItem.TabIndex = 0;
  69. this.textBoxItem.Text = "textBoxItem";
  70. //
  71. // FormEntryBox
  72. //
  73. this.AcceptButton = this.buttonOk;
  74. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  75. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  76. this.CancelButton = this.buttonCancel;
  77. this.ClientSize = new System.Drawing.Size(344, 140);
  78. this.Controls.Add(this.textBoxItem);
  79. this.Controls.Add(this.buttonOk);
  80. this.Controls.Add(this.buttonCancel);
  81. this.Controls.Add(this.labelMessage);
  82. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
  83. this.MaximizeBox = false;
  84. this.MinimizeBox = false;
  85. this.Name = "FormEntryBox";
  86. this.Text = "Dialog Text";
  87. this.Load += new System.EventHandler(this.FormEntryBox_Load);
  88. this.Shown += new System.EventHandler(this.FormEntryBox_Shown);
  89. this.ResumeLayout(false);
  90. this.PerformLayout();
  91. }
  92. #endregion
  93. private System.Windows.Forms.Label labelMessage;
  94. private System.Windows.Forms.Button buttonCancel;
  95. private System.Windows.Forms.Button buttonOk;
  96. private System.Windows.Forms.TextBox textBoxItem;
  97. }
  98. }