FileSelectionCtrl.Designer.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. namespace qdr.app.tools.qfu.gui.Subforms.Common
  2. {
  3. partial class FileSelectionCtrl
  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 Component 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. lblText = new Label();
  29. tableLayoutPanel1 = new TableLayoutPanel();
  30. tbSelectedPath = new TextBox();
  31. butSelect = new Button();
  32. tableLayoutPanel1.SuspendLayout();
  33. SuspendLayout();
  34. //
  35. // lblText
  36. //
  37. lblText.AutoSize = true;
  38. lblText.Dock = DockStyle.Top;
  39. lblText.Location = new Point(0, 0);
  40. lblText.Name = "lblText";
  41. lblText.Size = new Size(38, 15);
  42. lblText.TabIndex = 0;
  43. lblText.Text = "label1";
  44. //
  45. // tableLayoutPanel1
  46. //
  47. tableLayoutPanel1.ColumnCount = 2;
  48. tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
  49. tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 44F));
  50. tableLayoutPanel1.Controls.Add(tbSelectedPath, 0, 0);
  51. tableLayoutPanel1.Controls.Add(butSelect, 1, 0);
  52. tableLayoutPanel1.Dock = DockStyle.Fill;
  53. tableLayoutPanel1.Location = new Point(0, 15);
  54. tableLayoutPanel1.Margin = new Padding(3, 2, 3, 2);
  55. tableLayoutPanel1.Name = "tableLayoutPanel1";
  56. tableLayoutPanel1.RowCount = 1;
  57. tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
  58. tableLayoutPanel1.Size = new Size(545, 25);
  59. tableLayoutPanel1.TabIndex = 1;
  60. //
  61. // tbSelectedPath
  62. //
  63. tbSelectedPath.Dock = DockStyle.Fill;
  64. tbSelectedPath.Location = new Point(3, 2);
  65. tbSelectedPath.Margin = new Padding(3, 2, 3, 2);
  66. tbSelectedPath.Name = "tbSelectedPath";
  67. tbSelectedPath.ReadOnly = true;
  68. tbSelectedPath.Size = new Size(495, 23);
  69. tbSelectedPath.TabIndex = 0;
  70. //
  71. // butSelect
  72. //
  73. butSelect.Dock = DockStyle.Fill;
  74. butSelect.Location = new Point(504, 2);
  75. butSelect.Margin = new Padding(3, 2, 3, 2);
  76. butSelect.Name = "butSelect";
  77. butSelect.Size = new Size(38, 21);
  78. butSelect.TabIndex = 1;
  79. butSelect.Text = "...";
  80. butSelect.UseVisualStyleBackColor = true;
  81. butSelect.Click += butSelect_Click;
  82. //
  83. // FileSelectionCtrl
  84. //
  85. AutoScaleDimensions = new SizeF(7F, 15F);
  86. AutoScaleMode = AutoScaleMode.Font;
  87. Controls.Add(tableLayoutPanel1);
  88. Controls.Add(lblText);
  89. Margin = new Padding(3, 2, 3, 2);
  90. Name = "FileSelectionCtrl";
  91. Size = new Size(545, 40);
  92. tableLayoutPanel1.ResumeLayout(false);
  93. tableLayoutPanel1.PerformLayout();
  94. ResumeLayout(false);
  95. PerformLayout();
  96. }
  97. #endregion
  98. private Label lblText;
  99. private TableLayoutPanel tableLayoutPanel1;
  100. private TextBox tbSelectedPath;
  101. private Button butSelect;
  102. }
  103. }