WatchInputDialog.Designer.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. namespace MoonSharp.Debugger
  2. {
  3. partial class WatchInputDialog
  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.txtWatch = new System.Windows.Forms.TextBox();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.btnOK = new System.Windows.Forms.Button();
  31. this.btnCancel = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // txtWatch
  35. //
  36. this.txtWatch.Location = new System.Drawing.Point(79, 15);
  37. this.txtWatch.Name = "txtWatch";
  38. this.txtWatch.Size = new System.Drawing.Size(238, 20);
  39. this.txtWatch.TabIndex = 0;
  40. //
  41. // label1
  42. //
  43. this.label1.AutoSize = true;
  44. this.label1.Location = new System.Drawing.Point(12, 18);
  45. this.label1.Name = "label1";
  46. this.label1.Size = new System.Drawing.Size(61, 13);
  47. this.label1.TabIndex = 1;
  48. this.label1.Text = "Add watch:";
  49. //
  50. // btnOK
  51. //
  52. this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  53. this.btnOK.Location = new System.Drawing.Point(183, 51);
  54. this.btnOK.Name = "btnOK";
  55. this.btnOK.Size = new System.Drawing.Size(64, 31);
  56. this.btnOK.TabIndex = 2;
  57. this.btnOK.Text = "OK";
  58. this.btnOK.UseVisualStyleBackColor = true;
  59. //
  60. // btnCancel
  61. //
  62. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  63. this.btnCancel.Location = new System.Drawing.Point(253, 51);
  64. this.btnCancel.Name = "btnCancel";
  65. this.btnCancel.Size = new System.Drawing.Size(64, 31);
  66. this.btnCancel.TabIndex = 3;
  67. this.btnCancel.Text = "Cancel";
  68. this.btnCancel.UseVisualStyleBackColor = true;
  69. //
  70. // WatchInputDialog
  71. //
  72. this.AcceptButton = this.btnOK;
  73. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  74. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  75. this.CancelButton = this.btnCancel;
  76. this.ClientSize = new System.Drawing.Size(338, 98);
  77. this.Controls.Add(this.btnCancel);
  78. this.Controls.Add(this.btnOK);
  79. this.Controls.Add(this.label1);
  80. this.Controls.Add(this.txtWatch);
  81. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  82. this.MaximizeBox = false;
  83. this.MinimizeBox = false;
  84. this.Name = "WatchInputDialog";
  85. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  86. this.Text = "Add new watch..";
  87. this.ResumeLayout(false);
  88. this.PerformLayout();
  89. }
  90. #endregion
  91. private System.Windows.Forms.TextBox txtWatch;
  92. private System.Windows.Forms.Label label1;
  93. private System.Windows.Forms.Button btnOK;
  94. private System.Windows.Forms.Button btnCancel;
  95. }
  96. }