FormStatusSelect.Designer.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. namespace parkspace_manager
  2. {
  3. partial class FormStatusSelect
  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.btn_confirm = new System.Windows.Forms.Button();
  29. this.btn_cancel = new System.Windows.Forms.Button();
  30. this.listBox_status = new System.Windows.Forms.ListBox();
  31. this.SuspendLayout();
  32. //
  33. // btn_confirm
  34. //
  35. this.btn_confirm.Location = new System.Drawing.Point(13, 126);
  36. this.btn_confirm.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  37. this.btn_confirm.Name = "btn_confirm";
  38. this.btn_confirm.Size = new System.Drawing.Size(88, 38);
  39. this.btn_confirm.TabIndex = 0;
  40. this.btn_confirm.Text = "确定";
  41. this.btn_confirm.UseVisualStyleBackColor = true;
  42. this.btn_confirm.Click += new System.EventHandler(this.btn_confirm_Click);
  43. //
  44. // btn_cancel
  45. //
  46. this.btn_cancel.Location = new System.Drawing.Point(125, 126);
  47. this.btn_cancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  48. this.btn_cancel.Name = "btn_cancel";
  49. this.btn_cancel.Size = new System.Drawing.Size(88, 38);
  50. this.btn_cancel.TabIndex = 1;
  51. this.btn_cancel.Text = "取消";
  52. this.btn_cancel.UseVisualStyleBackColor = true;
  53. this.btn_cancel.Click += new System.EventHandler(this.btn_cancel_Click);
  54. //
  55. // listBox_status
  56. //
  57. this.listBox_status.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  58. this.listBox_status.FormattingEnabled = true;
  59. this.listBox_status.ItemHeight = 20;
  60. this.listBox_status.Items.AddRange(new object[] {
  61. "空闲",
  62. "占用",
  63. "已预约",
  64. "锁定",
  65. "故障"});
  66. this.listBox_status.Location = new System.Drawing.Point(25, 12);
  67. this.listBox_status.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  68. this.listBox_status.Name = "listBox_status";
  69. this.listBox_status.Size = new System.Drawing.Size(169, 104);
  70. this.listBox_status.TabIndex = 2;
  71. this.listBox_status.SelectedIndexChanged += new System.EventHandler(this.listBox_status_SelectedIndexChanged);
  72. //
  73. // FormStatusSelect
  74. //
  75. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  76. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  77. this.ClientSize = new System.Drawing.Size(231, 175);
  78. this.Controls.Add(this.listBox_status);
  79. this.Controls.Add(this.btn_cancel);
  80. this.Controls.Add(this.btn_confirm);
  81. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  82. this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  83. this.Name = "FormStatusSelect";
  84. this.ShowInTaskbar = false;
  85. this.Text = "FormStatusSelect";
  86. this.ResumeLayout(false);
  87. }
  88. #endregion
  89. private System.Windows.Forms.Button btn_confirm;
  90. private System.Windows.Forms.Button btn_cancel;
  91. private System.Windows.Forms.ListBox listBox_status;
  92. }
  93. }