HelpAbout.Designer.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. //-----------------------------------------------------------------------------
  2. // HelpAbout.Designer.cs
  3. //
  4. // Microsoft XNA Community Game Platform
  5. // Copyright (C) Microsoft Corporation. All rights reserved.
  6. //-----------------------------------------------------------------------------
  7. namespace Xna.Tools
  8. {
  9. partial class HelpAbout
  10. {
  11. /// <summary>
  12. /// Required designer variable.
  13. /// </summary>
  14. private System.ComponentModel.IContainer components = null;
  15. /// <summary>
  16. /// Clean up any resources being used.
  17. /// </summary>
  18. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  19. protected override void Dispose(bool disposing)
  20. {
  21. if (disposing && (components != null))
  22. {
  23. components.Dispose();
  24. }
  25. base.Dispose(disposing);
  26. }
  27. #region Windows Form Designer generated code
  28. /// <summary>
  29. /// Required method for Designer support - do not modify
  30. /// the contents of this method with the code editor.
  31. /// </summary>
  32. private void InitializeComponent()
  33. {
  34. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  35. this.label1 = new System.Windows.Forms.Label();
  36. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  37. this.SuspendLayout();
  38. //
  39. // pictureBox1
  40. //
  41. this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  42. this.pictureBox1.Image = global::Xna.Tools.CurveEditorResources.CurveEditor;
  43. this.pictureBox1.Location = new System.Drawing.Point(0, 0);
  44. this.pictureBox1.Name = "pictureBox1";
  45. this.pictureBox1.Size = new System.Drawing.Size(512, 128);
  46. this.pictureBox1.TabIndex = 0;
  47. this.pictureBox1.TabStop = false;
  48. //
  49. // label1
  50. //
  51. this.label1.AutoSize = true;
  52. this.label1.BackColor = System.Drawing.SystemColors.Control;
  53. this.label1.Location = new System.Drawing.Point(12, 9);
  54. this.label1.Name = "label1";
  55. this.label1.Size = new System.Drawing.Size(133, 13);
  56. this.label1.TabIndex = 1;
  57. this.label1.Tag = "";
  58. this.label1.Text = "XNA Curve Editor Ver 1.00";
  59. //
  60. // HelpAbout
  61. //
  62. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  63. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  64. this.ClientSize = new System.Drawing.Size(512, 128);
  65. this.Controls.Add(this.label1);
  66. this.Controls.Add(this.pictureBox1);
  67. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  68. this.MaximizeBox = false;
  69. this.MinimizeBox = false;
  70. this.Name = "HelpAbout";
  71. this.Text = "About";
  72. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HelpAbout_KeyDown);
  73. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  74. this.ResumeLayout(false);
  75. this.PerformLayout();
  76. }
  77. #endregion
  78. private System.Windows.Forms.PictureBox pictureBox1;
  79. private System.Windows.Forms.Label label1;
  80. }
  81. }