1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- namespace FastReport.FastQueryBuilder
- {
- partial class InputBox
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.TextBox = new System.Windows.Forms.TextBox();
- this.TextLabel = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // TextBox
- //
- this.TextBox.Location = new System.Drawing.Point(11, 28);
- this.TextBox.Name = "TextBox";
- this.TextBox.Size = new System.Drawing.Size(244, 21);
- this.TextBox.TabIndex = 0;
- //
- // TextLabel
- //
- this.TextLabel.AutoSize = true;
- this.TextLabel.Location = new System.Drawing.Point(12, 12);
- this.TextLabel.Name = "TextLabel";
- this.TextLabel.Size = new System.Drawing.Size(35, 13);
- this.TextLabel.TabIndex = 1;
- this.TextLabel.Text = "label1";
-
- btnOk.Location = new System.Drawing.Point(100, 65);
- btnCancel.Location = new System.Drawing.Point(181, 65);
- //
- // InputBox
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.ClientSize = new System.Drawing.Size(267, 98);
- this.Controls.Add(this.TextLabel);
- this.Controls.Add(this.TextBox);
- this.Name = "InputBox";
- this.Text = "InputBox";
- this.Shown += new System.EventHandler(this.InputBox_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- public System.Windows.Forms.TextBox TextBox;
- public System.Windows.Forms.Label TextLabel;
- }
- }
|