Form1.Designer.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. namespace BfAeDebug
  2. {
  3. partial class Form1
  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.mBfButton = new System.Windows.Forms.Button();
  29. this.mVsButton = new System.Windows.Forms.Button();
  30. this.mCancelButton = new System.Windows.Forms.Button();
  31. this.mLabel = new System.Windows.Forms.Label();
  32. this.SuspendLayout();
  33. //
  34. // mBfButton
  35. //
  36. this.mBfButton.Location = new System.Drawing.Point(12, 62);
  37. this.mBfButton.Name = "mBfButton";
  38. this.mBfButton.Size = new System.Drawing.Size(160, 32);
  39. this.mBfButton.TabIndex = 0;
  40. this.mBfButton.Text = "Attach Beef Debugger (d)";
  41. this.mBfButton.UseVisualStyleBackColor = true;
  42. this.mBfButton.Click += new System.EventHandler(this.button1_Click);
  43. //
  44. // mVsButton
  45. //
  46. this.mVsButton.Location = new System.Drawing.Point(178, 62);
  47. this.mVsButton.Name = "mVsButton";
  48. this.mVsButton.Size = new System.Drawing.Size(160, 32);
  49. this.mVsButton.TabIndex = 1;
  50. this.mVsButton.Text = "Attach Visual Studio";
  51. this.mVsButton.UseVisualStyleBackColor = true;
  52. this.mVsButton.Click += new System.EventHandler(this.mVsButton_Click);
  53. //
  54. // mCancelButton
  55. //
  56. this.mCancelButton.Location = new System.Drawing.Point(344, 62);
  57. this.mCancelButton.Name = "mCancelButton";
  58. this.mCancelButton.Size = new System.Drawing.Size(160, 32);
  59. this.mCancelButton.TabIndex = 2;
  60. this.mCancelButton.Text = "Cancel";
  61. this.mCancelButton.UseVisualStyleBackColor = true;
  62. this.mCancelButton.Click += new System.EventHandler(this.mCancelButton_Click);
  63. //
  64. // mLabel
  65. //
  66. this.mLabel.AutoSize = true;
  67. this.mLabel.Location = new System.Drawing.Point(12, 9);
  68. this.mLabel.Name = "mLabel";
  69. this.mLabel.Size = new System.Drawing.Size(87, 13);
  70. this.mLabel.TabIndex = 3;
  71. this.mLabel.Text = "Process Crashed";
  72. this.mLabel.Click += new System.EventHandler(this.label1_Click);
  73. //
  74. // Form1
  75. //
  76. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  77. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  78. this.ClientSize = new System.Drawing.Size(518, 114);
  79. this.Controls.Add(this.mLabel);
  80. this.Controls.Add(this.mCancelButton);
  81. this.Controls.Add(this.mVsButton);
  82. this.Controls.Add(this.mBfButton);
  83. this.Name = "Form1";
  84. this.Text = "Attach Debugger ...";
  85. this.ResumeLayout(false);
  86. this.PerformLayout();
  87. }
  88. #endregion
  89. private System.Windows.Forms.Button mBfButton;
  90. private System.Windows.Forms.Button mVsButton;
  91. private System.Windows.Forms.Button mCancelButton;
  92. private System.Windows.Forms.Label mLabel;
  93. }
  94. }