DirectorySelectionCtrl.Designer.cs 3.8 KB

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