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.9 KiB

  1. namespace ManagementSystem
  2. {
  3. partial class InputDialog
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InputDialog));
  29. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  30. this.lbQuestionMessage = new System.Windows.Forms.Label();
  31. this.txtInput = new System.Windows.Forms.TextBox();
  32. this.btnOK = new System.Windows.Forms.Button();
  33. this.btnCancle = new System.Windows.Forms.Button();
  34. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // pictureBox1
  38. //
  39. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  40. this.pictureBox1.Location = new System.Drawing.Point(38, 21);
  41. this.pictureBox1.Name = "pictureBox1";
  42. this.pictureBox1.Size = new System.Drawing.Size(59, 56);
  43. this.pictureBox1.TabIndex = 0;
  44. this.pictureBox1.TabStop = false;
  45. //
  46. // lbQuestionMessage
  47. //
  48. this.lbQuestionMessage.AutoSize = true;
  49. this.lbQuestionMessage.Location = new System.Drawing.Point(117, 21);
  50. this.lbQuestionMessage.Name = "lbQuestionMessage";
  51. this.lbQuestionMessage.Size = new System.Drawing.Size(158, 20);
  52. this.lbQuestionMessage.TabIndex = 1;
  53. this.lbQuestionMessage.Text = "lbQuestionMessage";
  54. //
  55. // txtInput
  56. //
  57. this.txtInput.Location = new System.Drawing.Point(121, 44);
  58. this.txtInput.Name = "txtInput";
  59. this.txtInput.Size = new System.Drawing.Size(208, 29);
  60. this.txtInput.TabIndex = 2;
  61. //
  62. // btnOK
  63. //
  64. this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  65. this.btnOK.Location = new System.Drawing.Point(142, 79);
  66. this.btnOK.Name = "btnOK";
  67. this.btnOK.Size = new System.Drawing.Size(75, 29);
  68. this.btnOK.TabIndex = 3;
  69. this.btnOK.Text = "確 認";
  70. this.btnOK.UseVisualStyleBackColor = true;
  71. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  72. //
  73. // btnCancle
  74. //
  75. this.btnCancle.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  76. this.btnCancle.Location = new System.Drawing.Point(237, 79);
  77. this.btnCancle.Name = "btnCancle";
  78. this.btnCancle.Size = new System.Drawing.Size(75, 29);
  79. this.btnCancle.TabIndex = 3;
  80. this.btnCancle.Text = "取 消";
  81. this.btnCancle.UseVisualStyleBackColor = true;
  82. //
  83. // InputDialog
  84. //
  85. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F);
  86. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  87. this.ClientSize = new System.Drawing.Size(381, 131);
  88. this.ControlBox = false;
  89. this.Controls.Add(this.btnCancle);
  90. this.Controls.Add(this.btnOK);
  91. this.Controls.Add(this.txtInput);
  92. this.Controls.Add(this.lbQuestionMessage);
  93. this.Controls.Add(this.pictureBox1);
  94. this.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
  95. this.Margin = new System.Windows.Forms.Padding(5);
  96. this.Name = "InputDialog";
  97. this.Text = "輸入視窗";
  98. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  99. this.ResumeLayout(false);
  100. this.PerformLayout();
  101. }
  102. #endregion
  103. private System.Windows.Forms.PictureBox pictureBox1;
  104. public System.Windows.Forms.Label lbQuestionMessage;
  105. private System.Windows.Forms.Button btnOK;
  106. private System.Windows.Forms.Button btnCancle;
  107. public System.Windows.Forms.TextBox txtInput;
  108. }
  109. }