InputBox.Designer.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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.SuspendLayout();
  31. //
  32. // TextBox
  33. //
  34. this.TextBox.Location = new System.Drawing.Point(11, 28);
  35. this.TextBox.Name = "TextBox";
  36. this.TextBox.Size = new System.Drawing.Size(244, 21);
  37. this.TextBox.TabIndex = 0;
  38. //
  39. // TextLabel
  40. //
  41. this.TextLabel.AutoSize = true;
  42. this.TextLabel.Location = new System.Drawing.Point(12, 12);
  43. this.TextLabel.Name = "TextLabel";
  44. this.TextLabel.Size = new System.Drawing.Size(35, 13);
  45. this.TextLabel.TabIndex = 1;
  46. this.TextLabel.Text = "label1";
  47. btnOk.Location = new System.Drawing.Point(100, 65);
  48. btnCancel.Location = new System.Drawing.Point(181, 65);
  49. //
  50. // InputBox
  51. //
  52. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  53. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  54. this.ClientSize = new System.Drawing.Size(267, 98);
  55. this.Controls.Add(this.TextLabel);
  56. this.Controls.Add(this.TextBox);
  57. this.Name = "InputBox";
  58. this.Text = "InputBox";
  59. this.Shown += new System.EventHandler(this.InputBox_Load);
  60. this.ResumeLayout(false);
  61. this.PerformLayout();
  62. }
  63. #endregion
  64. public System.Windows.Forms.TextBox TextBox;
  65. public System.Windows.Forms.Label TextLabel;
  66. }
  67. }