| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- namespace qdr.app.tools.qfu.gui.Subforms.Common
- {
- partial class FileSelectionCtrl
- {
- /// <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 Component 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()
- {
- lblText = new Label();
- tableLayoutPanel1 = new TableLayoutPanel();
- tbSelectedPath = new TextBox();
- butSelect = new Button();
- tableLayoutPanel1.SuspendLayout();
- SuspendLayout();
- //
- // lblText
- //
- lblText.AutoSize = true;
- lblText.Dock = DockStyle.Top;
- lblText.Location = new Point(0, 0);
- lblText.Name = "lblText";
- lblText.Size = new Size(38, 15);
- lblText.TabIndex = 0;
- lblText.Text = "label1";
- //
- // tableLayoutPanel1
- //
- tableLayoutPanel1.ColumnCount = 2;
- tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
- tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 44F));
- tableLayoutPanel1.Controls.Add(tbSelectedPath, 0, 0);
- tableLayoutPanel1.Controls.Add(butSelect, 1, 0);
- tableLayoutPanel1.Dock = DockStyle.Fill;
- tableLayoutPanel1.Location = new Point(0, 15);
- tableLayoutPanel1.Margin = new Padding(3, 2, 3, 2);
- tableLayoutPanel1.Name = "tableLayoutPanel1";
- tableLayoutPanel1.RowCount = 1;
- tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
- tableLayoutPanel1.Size = new Size(545, 25);
- tableLayoutPanel1.TabIndex = 1;
- //
- // tbSelectedPath
- //
- tbSelectedPath.Dock = DockStyle.Fill;
- tbSelectedPath.Location = new Point(3, 2);
- tbSelectedPath.Margin = new Padding(3, 2, 3, 2);
- tbSelectedPath.Name = "tbSelectedPath";
- tbSelectedPath.ReadOnly = true;
- tbSelectedPath.Size = new Size(495, 23);
- tbSelectedPath.TabIndex = 0;
- //
- // butSelect
- //
- butSelect.Dock = DockStyle.Fill;
- butSelect.Location = new Point(504, 2);
- butSelect.Margin = new Padding(3, 2, 3, 2);
- butSelect.Name = "butSelect";
- butSelect.Size = new Size(38, 21);
- butSelect.TabIndex = 1;
- butSelect.Text = "...";
- butSelect.UseVisualStyleBackColor = true;
- butSelect.Click += butSelect_Click;
- //
- // FileSelectionCtrl
- //
- AutoScaleDimensions = new SizeF(7F, 15F);
- AutoScaleMode = AutoScaleMode.Font;
- Controls.Add(tableLayoutPanel1);
- Controls.Add(lblText);
- Margin = new Padding(3, 2, 3, 2);
- Name = "FileSelectionCtrl";
- Size = new Size(545, 40);
- tableLayoutPanel1.ResumeLayout(false);
- tableLayoutPanel1.PerformLayout();
- ResumeLayout(false);
- PerformLayout();
- }
- #endregion
- private Label lblText;
- private TableLayoutPanel tableLayoutPanel1;
- private TextBox tbSelectedPath;
- private Button butSelect;
- }
- }
|