AboutDialog.Designer.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. namespace Cobble {
  2. partial class AboutDialog {
  3. /// <summary>
  4. /// Required designer variable.
  5. /// </summary>
  6. private System.ComponentModel.IContainer components = null;
  7. /// <summary>
  8. /// Clean up any resources being used.
  9. /// </summary>
  10. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  11. protected override void Dispose(bool disposing) {
  12. if (disposing && (components != null)) {
  13. components.Dispose();
  14. }
  15. base.Dispose(disposing);
  16. }
  17. #region Windows Form Designer generated code
  18. /// <summary>
  19. /// Required method for Designer support - do not modify
  20. /// the contents of this method with the code editor.
  21. /// </summary>
  22. private void InitializeComponent() {
  23. this.label1 = new System.Windows.Forms.Label();
  24. this.label2 = new System.Windows.Forms.Label();
  25. this.button1 = new System.Windows.Forms.Button();
  26. this.label3 = new System.Windows.Forms.Label();
  27. this.SuspendLayout();
  28. //
  29. // label1
  30. //
  31. this.label1.AutoSize = true;
  32. this.label1.Location = new System.Drawing.Point(12, 9);
  33. this.label1.Name = "label1";
  34. this.label1.Size = new System.Drawing.Size(199, 13);
  35. this.label1.TabIndex = 0;
  36. this.label1.Text = "Cobble - simple SuperTux 0.2 level editor";
  37. //
  38. // label2
  39. //
  40. this.label2.AutoSize = true;
  41. this.label2.Location = new System.Drawing.Point(12, 22);
  42. this.label2.Name = "label2";
  43. this.label2.Size = new System.Drawing.Size(181, 13);
  44. this.label2.TabIndex = 1;
  45. this.label2.Text = "Copyright \xA9 2006 Christoph Sommer";
  46. //
  47. // button1
  48. //
  49. this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
  50. this.button1.Location = new System.Drawing.Point(135, 71);
  51. this.button1.Name = "button1";
  52. this.button1.Size = new System.Drawing.Size(75, 23);
  53. this.button1.TabIndex = 2;
  54. this.button1.Text = "OK";
  55. this.button1.UseVisualStyleBackColor = true;
  56. //
  57. // label3
  58. //
  59. this.label3.AutoSize = true;
  60. this.label3.Location = new System.Drawing.Point(12, 35);
  61. this.label3.Name = "label3";
  62. this.label3.Size = new System.Drawing.Size(129, 13);
  63. this.label3.TabIndex = 3;
  64. this.label3.Text = "Distributed under the GPL";
  65. //
  66. // AboutDialog
  67. //
  68. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  69. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  70. this.ClientSize = new System.Drawing.Size(222, 106);
  71. this.Controls.Add(this.label3);
  72. this.Controls.Add(this.button1);
  73. this.Controls.Add(this.label2);
  74. this.Controls.Add(this.label1);
  75. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  76. this.MaximizeBox = false;
  77. this.MinimizeBox = false;
  78. this.Name = "AboutDialog";
  79. this.Text = "About Cobble";
  80. this.ResumeLayout(false);
  81. this.PerformLayout();
  82. }
  83. #endregion
  84. private System.Windows.Forms.Label label1;
  85. private System.Windows.Forms.Label label2;
  86. private System.Windows.Forms.Button button1;
  87. private System.Windows.Forms.Label label3;
  88. }
  89. }