FormCollision.Designer.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. namespace GameEditorPlugin.Tools
  2. {
  3. partial class FormCollision
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormCollision));
  29. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  30. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  31. this.btn_Reset = new System.Windows.Forms.ToolStripButton();
  32. this.combo_TestType = new System.Windows.Forms.ToolStripComboBox();
  33. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  34. this.toolStrip1.SuspendLayout();
  35. this.SuspendLayout();
  36. //
  37. // pictureBox1
  38. //
  39. this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  40. this.pictureBox1.Location = new System.Drawing.Point(0, 25);
  41. this.pictureBox1.Name = "pictureBox1";
  42. this.pictureBox1.Size = new System.Drawing.Size(914, 673);
  43. this.pictureBox1.TabIndex = 0;
  44. this.pictureBox1.TabStop = false;
  45. this.pictureBox1.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBox1_Paint);
  46. this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseDown);
  47. this.pictureBox1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseMove);
  48. this.pictureBox1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseUp);
  49. //
  50. // toolStrip1
  51. //
  52. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  53. this.btn_Reset,
  54. this.combo_TestType});
  55. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  56. this.toolStrip1.Name = "toolStrip1";
  57. this.toolStrip1.Size = new System.Drawing.Size(914, 25);
  58. this.toolStrip1.TabIndex = 1;
  59. this.toolStrip1.Text = "toolStrip1";
  60. //
  61. // btn_Reset
  62. //
  63. this.btn_Reset.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  64. this.btn_Reset.Image = ((System.Drawing.Image)(resources.GetObject("btn_Reset.Image")));
  65. this.btn_Reset.ImageTransparentColor = System.Drawing.Color.Magenta;
  66. this.btn_Reset.Name = "btn_Reset";
  67. this.btn_Reset.Size = new System.Drawing.Size(44, 22);
  68. this.btn_Reset.Text = "Reset";
  69. this.btn_Reset.Click += new System.EventHandler(this.btn_Reset_Click);
  70. //
  71. // combo_TestType
  72. //
  73. this.combo_TestType.Name = "combo_TestType";
  74. this.combo_TestType.Size = new System.Drawing.Size(121, 25);
  75. this.combo_TestType.TextChanged += new System.EventHandler(this.combo_TestType_TextChanged);
  76. //
  77. // FormRoundLine
  78. //
  79. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  80. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  81. this.ClientSize = new System.Drawing.Size(914, 698);
  82. this.Controls.Add(this.pictureBox1);
  83. this.Controls.Add(this.toolStrip1);
  84. this.Name = "FormRoundLine";
  85. this.Text = "FormRoundLine";
  86. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  87. this.toolStrip1.ResumeLayout(false);
  88. this.toolStrip1.PerformLayout();
  89. this.ResumeLayout(false);
  90. this.PerformLayout();
  91. }
  92. #endregion
  93. private System.Windows.Forms.PictureBox pictureBox1;
  94. private System.Windows.Forms.ToolStrip toolStrip1;
  95. private System.Windows.Forms.ToolStripButton btn_Reset;
  96. private System.Windows.Forms.ToolStripComboBox combo_TestType;
  97. }
  98. }