版博士V2.0程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

InputFrm.Designer.cs 6.1 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. namespace MaiMuAOI.SysUI.ProductAndStep
  2. {
  3. partial class InputFrm
  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 Windows Form 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. this.uiTitel1 = new MaiMuControl.UIKits.MaiMuMenu.UITitel();
  29. this.cobList = new System.Windows.Forms.ComboBox();
  30. this.btnCancel = new System.Windows.Forms.Button();
  31. this.btnOK = new System.Windows.Forms.Button();
  32. this.tbInputSN = new System.Windows.Forms.TextBox();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.SuspendLayout();
  35. //
  36. // uiTitel1
  37. //
  38. this.uiTitel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(31)))), ((int)(((byte)(120)))));
  39. this.uiTitel1.Dock = System.Windows.Forms.DockStyle.Top;
  40. this.uiTitel1.FatherForm = null;
  41. this.uiTitel1.Location = new System.Drawing.Point(0, 0);
  42. this.uiTitel1.Name = "uiTitel1";
  43. this.uiTitel1.Size = new System.Drawing.Size(504, 46);
  44. this.uiTitel1.TabIndex = 27;
  45. //
  46. // cobList
  47. //
  48. this.cobList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  49. this.cobList.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  50. this.cobList.FormattingEnabled = true;
  51. this.cobList.Location = new System.Drawing.Point(24, 91);
  52. this.cobList.Margin = new System.Windows.Forms.Padding(2);
  53. this.cobList.Name = "cobList";
  54. this.cobList.Size = new System.Drawing.Size(438, 29);
  55. this.cobList.TabIndex = 30;
  56. //
  57. // btnCancel
  58. //
  59. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  60. this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  61. this.btnCancel.Location = new System.Drawing.Point(393, 125);
  62. this.btnCancel.Margin = new System.Windows.Forms.Padding(2);
  63. this.btnCancel.Name = "btnCancel";
  64. this.btnCancel.Size = new System.Drawing.Size(69, 31);
  65. this.btnCancel.TabIndex = 28;
  66. this.btnCancel.Text = "取消";
  67. this.btnCancel.UseVisualStyleBackColor = true;
  68. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  69. //
  70. // btnOK
  71. //
  72. this.btnOK.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  73. this.btnOK.Location = new System.Drawing.Point(265, 125);
  74. this.btnOK.Margin = new System.Windows.Forms.Padding(2);
  75. this.btnOK.Name = "btnOK";
  76. this.btnOK.Size = new System.Drawing.Size(69, 31);
  77. this.btnOK.TabIndex = 29;
  78. this.btnOK.Text = "确认";
  79. this.btnOK.UseVisualStyleBackColor = true;
  80. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  81. //
  82. // tbInputSN
  83. //
  84. this.tbInputSN.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  85. this.tbInputSN.Location = new System.Drawing.Point(24, 91);
  86. this.tbInputSN.Name = "tbInputSN";
  87. this.tbInputSN.Size = new System.Drawing.Size(438, 29);
  88. this.tbInputSN.TabIndex = 31;
  89. //
  90. // label1
  91. //
  92. this.label1.AutoSize = true;
  93. this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  94. this.label1.ForeColor = System.Drawing.SystemColors.HighlightText;
  95. this.label1.Location = new System.Drawing.Point(22, 61);
  96. this.label1.Name = "label1";
  97. this.label1.Size = new System.Drawing.Size(58, 21);
  98. this.label1.TabIndex = 32;
  99. this.label1.Text = "输入:";
  100. //
  101. // InputFrm
  102. //
  103. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  104. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  105. this.ClientSize = new System.Drawing.Size(504, 177);
  106. this.Controls.Add(this.label1);
  107. this.Controls.Add(this.tbInputSN);
  108. this.Controls.Add(this.cobList);
  109. this.Controls.Add(this.btnCancel);
  110. this.Controls.Add(this.btnOK);
  111. this.Controls.Add(this.uiTitel1);
  112. this.Name = "InputFrm";
  113. this.Text = "输入";
  114. this.ResumeLayout(false);
  115. this.PerformLayout();
  116. }
  117. #endregion
  118. private MaiMuControl.UIKits.MaiMuMenu.UITitel uiTitel1;
  119. private System.Windows.Forms.ComboBox cobList;
  120. private System.Windows.Forms.Button btnCancel;
  121. private System.Windows.Forms.Button btnOK;
  122. private System.Windows.Forms.TextBox tbInputSN;
  123. private System.Windows.Forms.Label label1;
  124. }
  125. }