WindowsDebugger.Designer.cs 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. namespace FF8
  2. {
  3. partial class MakiDebugger
  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.splitContainer1 = new System.Windows.Forms.SplitContainer();
  29. this.listBox1 = new System.Windows.Forms.ListBox();
  30. this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
  31. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  32. this.splitContainer1.Panel1.SuspendLayout();
  33. this.splitContainer1.Panel2.SuspendLayout();
  34. this.splitContainer1.SuspendLayout();
  35. this.SuspendLayout();
  36. //
  37. // splitContainer1
  38. //
  39. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  40. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  41. this.splitContainer1.Name = "splitContainer1";
  42. //
  43. // splitContainer1.Panel1
  44. //
  45. this.splitContainer1.Panel1.Controls.Add(this.listBox1);
  46. //
  47. // splitContainer1.Panel2
  48. //
  49. this.splitContainer1.Panel2.Controls.Add(this.flowLayoutPanel1);
  50. this.splitContainer1.Size = new System.Drawing.Size(629, 261);
  51. this.splitContainer1.SplitterDistance = 357;
  52. this.splitContainer1.TabIndex = 0;
  53. //
  54. // listBox1
  55. //
  56. this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  57. this.listBox1.FormattingEnabled = true;
  58. this.listBox1.Location = new System.Drawing.Point(0, 0);
  59. this.listBox1.Name = "listBox1";
  60. this.listBox1.Size = new System.Drawing.Size(357, 261);
  61. this.listBox1.TabIndex = 0;
  62. this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
  63. //
  64. // flowLayoutPanel1
  65. //
  66. this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  67. this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  68. this.flowLayoutPanel1.Name = "flowLayoutPanel1";
  69. this.flowLayoutPanel1.Size = new System.Drawing.Size(268, 261);
  70. this.flowLayoutPanel1.TabIndex = 0;
  71. //
  72. // MakiDebugger
  73. //
  74. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  75. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  76. this.ClientSize = new System.Drawing.Size(629, 261);
  77. this.Controls.Add(this.splitContainer1);
  78. this.Name = "MakiDebugger";
  79. this.Text = "FF8 debug helper";
  80. this.splitContainer1.Panel1.ResumeLayout(false);
  81. this.splitContainer1.Panel2.ResumeLayout(false);
  82. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  83. this.splitContainer1.ResumeLayout(false);
  84. this.ResumeLayout(false);
  85. }
  86. #endregion
  87. private System.Windows.Forms.SplitContainer splitContainer1;
  88. private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
  89. private System.Windows.Forms.ListBox listBox1;
  90. }
  91. }