InputBox.Designer.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. namespace FastReport.FastQueryBuilder
  2. {
  3. partial class InputBox
  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.TextBox = new System.Windows.Forms.TextBox();
  29. this.TextLabel = new System.Windows.Forms.Label();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.button2 = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // TextBox
  35. //
  36. this.TextBox.Location = new System.Drawing.Point(11, 28);
  37. this.TextBox.Name = "TextBox";
  38. this.TextBox.Size = new System.Drawing.Size(244, 21);
  39. this.TextBox.TabIndex = 0;
  40. //
  41. // TextLabel
  42. //
  43. this.TextLabel.AutoSize = true;
  44. this.TextLabel.Location = new System.Drawing.Point(12, 12);
  45. this.TextLabel.Name = "TextLabel";
  46. this.TextLabel.Size = new System.Drawing.Size(35, 13);
  47. this.TextLabel.TabIndex = 1;
  48. this.TextLabel.Text = "label1";
  49. //
  50. // button1
  51. //
  52. this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  53. this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
  54. this.button1.Location = new System.Drawing.Point(54, 63);
  55. this.button1.Name = "button1";
  56. this.button1.Size = new System.Drawing.Size(75, 23);
  57. this.button1.TabIndex = 1;
  58. this.button1.Text = "Ok";
  59. this.button1.UseVisualStyleBackColor = true;
  60. //
  61. // button2
  62. //
  63. this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  64. this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  65. this.button2.Location = new System.Drawing.Point(135, 63);
  66. this.button2.Name = "button2";
  67. this.button2.Size = new System.Drawing.Size(75, 23);
  68. this.button2.TabIndex = 3;
  69. this.button2.Text = "Cancel";
  70. this.button2.UseVisualStyleBackColor = true;
  71. //
  72. // InputBox
  73. //
  74. this.AcceptButton = this.button1;
  75. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  76. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  77. this.ClientSize = new System.Drawing.Size(267, 98);
  78. this.Controls.Add(this.button2);
  79. this.Controls.Add(this.button1);
  80. this.Controls.Add(this.TextLabel);
  81. this.Controls.Add(this.TextBox);
  82. this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  83. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  84. this.Name = "InputBox";
  85. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  86. this.Text = "InputBox";
  87. this.Load += new System.EventHandler(this.InputBox_Load);
  88. this.ResumeLayout(false);
  89. this.PerformLayout();
  90. }
  91. #endregion
  92. public System.Windows.Forms.TextBox TextBox;
  93. public System.Windows.Forms.Label TextLabel;
  94. private System.Windows.Forms.Button button1;
  95. private System.Windows.Forms.Button button2;
  96. }
  97. }