StationUI.Designer.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. namespace ProjectManagementSystem.UI
  2. {
  3. partial class StationUI
  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.components = new System.ComponentModel.Container();
  29. this.labName = new System.Windows.Forms.Label();
  30. this.labCar = new System.Windows.Forms.Label();
  31. this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
  32. this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
  33. this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
  34. this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
  35. this.contextMenuStrip1.SuspendLayout();
  36. this.SuspendLayout();
  37. //
  38. // labName
  39. //
  40. this.labName.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  41. | System.Windows.Forms.AnchorStyles.Left)
  42. | System.Windows.Forms.AnchorStyles.Right)));
  43. this.labName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  44. this.labName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  45. this.labName.Location = new System.Drawing.Point(3, 3);
  46. this.labName.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  47. this.labName.Name = "labName";
  48. this.labName.Size = new System.Drawing.Size(128, 60);
  49. this.labName.TabIndex = 0;
  50. this.labName.Text = "OP010";
  51. this.labName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  52. //
  53. // labCar
  54. //
  55. this.labCar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  56. | System.Windows.Forms.AnchorStyles.Right)));
  57. this.labCar.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  58. this.labCar.Location = new System.Drawing.Point(3, 69);
  59. this.labCar.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  60. this.labCar.Name = "labCar";
  61. this.labCar.Size = new System.Drawing.Size(128, 28);
  62. this.labCar.TabIndex = 1;
  63. this.labCar.Text = " ";
  64. this.labCar.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  65. //
  66. // contextMenuStrip1
  67. //
  68. this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
  69. this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  70. this.toolStripMenuItem1,
  71. this.toolStripMenuItem2,
  72. this.toolStripMenuItem3});
  73. this.contextMenuStrip1.Name = "contextMenuStrip1";
  74. this.contextMenuStrip1.Size = new System.Drawing.Size(225, 94);
  75. //
  76. // toolStripMenuItem1
  77. //
  78. this.toolStripMenuItem1.Name = "toolStripMenuItem1";
  79. this.toolStripMenuItem1.Size = new System.Drawing.Size(224, 30);
  80. this.toolStripMenuItem1.Text = "改变工位车辆状态";
  81. this.toolStripMenuItem1.Visible = false;
  82. this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
  83. //
  84. // toolStripMenuItem2
  85. //
  86. this.toolStripMenuItem2.Name = "toolStripMenuItem2";
  87. this.toolStripMenuItem2.Size = new System.Drawing.Size(224, 30);
  88. this.toolStripMenuItem2.Text = "解除库位锁定";
  89. this.toolStripMenuItem2.Visible = false;
  90. this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
  91. //
  92. // toolStripMenuItem3
  93. //
  94. this.toolStripMenuItem3.Name = "toolStripMenuItem3";
  95. this.toolStripMenuItem3.Size = new System.Drawing.Size(224, 30);
  96. this.toolStripMenuItem3.Text = "手动放行";
  97. this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
  98. //
  99. // StationUI
  100. //
  101. this.AutoScaleDimensions = new System.Drawing.SizeF(13F, 24F);
  102. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  103. this.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  104. this.ContextMenuStrip = this.contextMenuStrip1;
  105. this.Controls.Add(this.labCar);
  106. this.Controls.Add(this.labName);
  107. this.Font = new System.Drawing.Font("楷体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  108. this.Margin = new System.Windows.Forms.Padding(4);
  109. this.Name = "StationUI";
  110. this.Size = new System.Drawing.Size(138, 102);
  111. this.contextMenuStrip1.ResumeLayout(false);
  112. this.ResumeLayout(false);
  113. }
  114. #endregion
  115. private System.Windows.Forms.Label labName;
  116. private System.Windows.Forms.Label labCar;
  117. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  118. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
  119. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
  120. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem3;
  121. }
  122. }