版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

114 lines
4.8 KiB

  1. namespace ProductionControl
  2. {
  3. partial class FrmInput
  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.btnOK = new System.Windows.Forms.Button();
  29. this.btnCancel = new System.Windows.Forms.Button();
  30. this.textBox1 = new System.Windows.Forms.TextBox();
  31. this.cobList = new System.Windows.Forms.ComboBox();
  32. this.SuspendLayout();
  33. //
  34. // btnOK
  35. //
  36. this.btnOK.Location = new System.Drawing.Point(239, 57);
  37. this.btnOK.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  38. this.btnOK.Name = "btnOK";
  39. this.btnOK.Size = new System.Drawing.Size(53, 20);
  40. this.btnOK.TabIndex = 0;
  41. this.btnOK.Text = "确认";
  42. this.btnOK.UseVisualStyleBackColor = true;
  43. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  44. //
  45. // btnCancel
  46. //
  47. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  48. this.btnCancel.Location = new System.Drawing.Point(303, 57);
  49. this.btnCancel.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  50. this.btnCancel.Name = "btnCancel";
  51. this.btnCancel.Size = new System.Drawing.Size(53, 20);
  52. this.btnCancel.TabIndex = 0;
  53. this.btnCancel.Text = "取消";
  54. this.btnCancel.UseVisualStyleBackColor = true;
  55. //
  56. // textBox1
  57. //
  58. this.textBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
  59. this.textBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
  60. this.textBox1.ImeMode = System.Windows.Forms.ImeMode.Disable;
  61. this.textBox1.Location = new System.Drawing.Point(8, 15);
  62. this.textBox1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  63. this.textBox1.Name = "textBox1";
  64. this.textBox1.Size = new System.Drawing.Size(351, 21);
  65. this.textBox1.TabIndex = 1;
  66. //
  67. // cobList
  68. //
  69. this.cobList.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
  70. this.cobList.FormattingEnabled = true;
  71. this.cobList.Location = new System.Drawing.Point(8, 15);
  72. this.cobList.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  73. this.cobList.Name = "cobList";
  74. this.cobList.Size = new System.Drawing.Size(349, 20);
  75. this.cobList.TabIndex = 2;
  76. //
  77. // FrmInput
  78. //
  79. this.AcceptButton = this.btnOK;
  80. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  81. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  82. this.CancelButton = this.btnCancel;
  83. this.ClientSize = new System.Drawing.Size(365, 82);
  84. this.Controls.Add(this.cobList);
  85. this.Controls.Add(this.textBox1);
  86. this.Controls.Add(this.btnCancel);
  87. this.Controls.Add(this.btnOK);
  88. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  89. this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  90. this.MaximizeBox = false;
  91. this.MinimizeBox = false;
  92. this.Name = "FrmInput";
  93. this.ShowIcon = false;
  94. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  95. this.Text = "请输入";
  96. this.TopMost = true;
  97. this.Load += new System.EventHandler(this.FrmInput_Load);
  98. this.Shown += new System.EventHandler(this.FrmInput_Shown);
  99. this.ResumeLayout(false);
  100. this.PerformLayout();
  101. }
  102. #endregion
  103. private System.Windows.Forms.Button btnOK;
  104. private System.Windows.Forms.Button btnCancel;
  105. private System.Windows.Forms.TextBox textBox1;
  106. private System.Windows.Forms.ComboBox cobList;
  107. }
  108. }