PageRenderTime 25ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/WorldView/FormProgressDialog.Designer.cs

#
C# | 86 lines | 57 code | 6 blank | 23 comment | 3 complexity | 2fa8fb9b77395a5c339b53d50ba05101 MD5 | raw file
  1. namespace MoreTerra
  2. {
  3. partial class FormProgressDialog
  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.progressBarTotal = new System.Windows.Forms.ProgressBar();
  29. this.buttonCancel = new System.Windows.Forms.Button();
  30. this.textBoxOutput = new System.Windows.Forms.TextBox();
  31. this.SuspendLayout();
  32. //
  33. // progressBarTotal
  34. //
  35. this.progressBarTotal.Location = new System.Drawing.Point(12, 157);
  36. this.progressBarTotal.Name = "progressBarTotal";
  37. this.progressBarTotal.Size = new System.Drawing.Size(262, 19);
  38. this.progressBarTotal.TabIndex = 0;
  39. //
  40. // buttonCancel
  41. //
  42. this.buttonCancel.Location = new System.Drawing.Point(106, 182);
  43. this.buttonCancel.Name = "buttonCancel";
  44. this.buttonCancel.Size = new System.Drawing.Size(75, 23);
  45. this.buttonCancel.TabIndex = 1;
  46. this.buttonCancel.Text = "Cancel";
  47. this.buttonCancel.UseVisualStyleBackColor = true;
  48. this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
  49. //
  50. // textBoxOutput
  51. //
  52. this.textBoxOutput.Location = new System.Drawing.Point(12, 12);
  53. this.textBoxOutput.Multiline = true;
  54. this.textBoxOutput.Name = "textBoxOutput";
  55. this.textBoxOutput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  56. this.textBoxOutput.Size = new System.Drawing.Size(262, 139);
  57. this.textBoxOutput.TabIndex = 2;
  58. //
  59. // FormProgressDialog
  60. //
  61. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  62. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  63. this.ClientSize = new System.Drawing.Size(286, 217);
  64. this.Controls.Add(this.textBoxOutput);
  65. this.Controls.Add(this.buttonCancel);
  66. this.Controls.Add(this.progressBarTotal);
  67. this.MaximizeBox = false;
  68. this.MinimizeBox = false;
  69. this.Name = "FormProgressDialog";
  70. this.Text = "FormProgressDialog";
  71. this.Load += new System.EventHandler(this.FormProgressDialog_Load);
  72. this.ResumeLayout(false);
  73. this.PerformLayout();
  74. }
  75. #endregion
  76. private System.Windows.Forms.ProgressBar progressBarTotal;
  77. private System.Windows.Forms.Button buttonCancel;
  78. private System.Windows.Forms.TextBox textBoxOutput;
  79. }
  80. }