paramControl.Designer.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. namespace UAS_DLLTest
  2. {
  3. partial class ParamControl
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.paramName = new System.Windows.Forms.Label();
  29. this.paramValue = new System.Windows.Forms.TextBox();
  30. this.SuspendLayout();
  31. //
  32. // paramName
  33. //
  34. this.paramName.AutoSize = true;
  35. this.paramName.Location = new System.Drawing.Point(2, 4);
  36. this.paramName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  37. this.paramName.Name = "paramName";
  38. this.paramName.Size = new System.Drawing.Size(41, 12);
  39. this.paramName.TabIndex = 0;
  40. this.paramName.Text = "label1";
  41. this.paramName.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
  42. //
  43. // paramValue
  44. //
  45. this.paramValue.Location = new System.Drawing.Point(73, 1);
  46. this.paramValue.Margin = new System.Windows.Forms.Padding(2);
  47. this.paramValue.Name = "paramValue";
  48. this.paramValue.Size = new System.Drawing.Size(138, 21);
  49. this.paramValue.TabIndex = 1;
  50. //
  51. // ParamControl
  52. //
  53. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  54. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  55. this.Controls.Add(this.paramValue);
  56. this.Controls.Add(this.paramName);
  57. this.Margin = new System.Windows.Forms.Padding(2);
  58. this.Name = "ParamControl";
  59. this.Size = new System.Drawing.Size(236, 26);
  60. this.ResumeLayout(false);
  61. this.PerformLayout();
  62. }
  63. #endregion
  64. private System.Windows.Forms.Label paramName;
  65. private System.Windows.Forms.TextBox paramValue;
  66. }
  67. }