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.

209 lines
9.8 KiB

  1. namespace ManagementSystem
  2. {
  3. partial class PickProject
  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.dgvDataMaintain = new System.Windows.Forms.DataGridView();
  29. this.txtProjectName = new System.Windows.Forms.TextBox();
  30. this.label2 = new System.Windows.Forms.Label();
  31. this.txtProjectNumber = new System.Windows.Forms.TextBox();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.btnClean = new System.Windows.Forms.Button();
  34. this.btnSearch = new System.Windows.Forms.Button();
  35. this.btnPick = new System.Windows.Forms.Button();
  36. this.btnClose = new System.Windows.Forms.Button();
  37. this.cbClosed = new System.Windows.Forms.CheckBox();
  38. this.cProjectID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.cProjectName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. ((System.ComponentModel.ISupportInitialize)(this.dgvDataMaintain)).BeginInit();
  41. this.SuspendLayout();
  42. //
  43. // dgvDataMaintain
  44. //
  45. this.dgvDataMaintain.AllowUserToAddRows = false;
  46. this.dgvDataMaintain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  47. | System.Windows.Forms.AnchorStyles.Left)
  48. | System.Windows.Forms.AnchorStyles.Right)));
  49. this.dgvDataMaintain.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  50. this.dgvDataMaintain.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  51. this.cProjectID,
  52. this.cProjectName});
  53. this.dgvDataMaintain.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
  54. this.dgvDataMaintain.Location = new System.Drawing.Point(14, 44);
  55. this.dgvDataMaintain.Margin = new System.Windows.Forms.Padding(5);
  56. this.dgvDataMaintain.MultiSelect = false;
  57. this.dgvDataMaintain.Name = "dgvDataMaintain";
  58. this.dgvDataMaintain.RowTemplate.Height = 24;
  59. this.dgvDataMaintain.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  60. this.dgvDataMaintain.Size = new System.Drawing.Size(697, 256);
  61. this.dgvDataMaintain.TabIndex = 27;
  62. this.dgvDataMaintain.DoubleClick += new System.EventHandler(this.dgvDataMaintain_DoubleClick);
  63. //
  64. // txtProjectName
  65. //
  66. this.txtProjectName.Location = new System.Drawing.Point(349, 8);
  67. this.txtProjectName.Name = "txtProjectName";
  68. this.txtProjectName.Size = new System.Drawing.Size(205, 29);
  69. this.txtProjectName.TabIndex = 24;
  70. this.txtProjectName.TextChanged += new System.EventHandler(this.txtProjectName_TextChanged);
  71. //
  72. // label2
  73. //
  74. this.label2.AutoSize = true;
  75. this.label2.Location = new System.Drawing.Point(266, 11);
  76. this.label2.Name = "label2";
  77. this.label2.Size = new System.Drawing.Size(89, 20);
  78. this.label2.TabIndex = 25;
  79. this.label2.Text = "專案名稱:";
  80. //
  81. // txtProjectNumber
  82. //
  83. this.txtProjectNumber.Location = new System.Drawing.Point(110, 8);
  84. this.txtProjectNumber.Name = "txtProjectNumber";
  85. this.txtProjectNumber.Size = new System.Drawing.Size(131, 29);
  86. this.txtProjectNumber.TabIndex = 23;
  87. this.txtProjectNumber.TextChanged += new System.EventHandler(this.txtProjectNumber_TextChanged);
  88. //
  89. // label1
  90. //
  91. this.label1.AutoSize = true;
  92. this.label1.Location = new System.Drawing.Point(22, 11);
  93. this.label1.Name = "label1";
  94. this.label1.Size = new System.Drawing.Size(89, 20);
  95. this.label1.TabIndex = 26;
  96. this.label1.Text = "專案編號:";
  97. //
  98. // btnClean
  99. //
  100. this.btnClean.Location = new System.Drawing.Point(555, 308);
  101. this.btnClean.Name = "btnClean";
  102. this.btnClean.Size = new System.Drawing.Size(75, 32);
  103. this.btnClean.TabIndex = 28;
  104. this.btnClean.Text = "清 除";
  105. this.btnClean.UseVisualStyleBackColor = true;
  106. this.btnClean.Click += new System.EventHandler(this.btnClean_Click);
  107. //
  108. // btnSearch
  109. //
  110. this.btnSearch.Location = new System.Drawing.Point(474, 308);
  111. this.btnSearch.Name = "btnSearch";
  112. this.btnSearch.Size = new System.Drawing.Size(75, 32);
  113. this.btnSearch.TabIndex = 29;
  114. this.btnSearch.Text = "查 詢";
  115. this.btnSearch.UseVisualStyleBackColor = true;
  116. this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
  117. //
  118. // btnPick
  119. //
  120. this.btnPick.Location = new System.Drawing.Point(393, 308);
  121. this.btnPick.Name = "btnPick";
  122. this.btnPick.Size = new System.Drawing.Size(75, 32);
  123. this.btnPick.TabIndex = 30;
  124. this.btnPick.Text = "選 擇";
  125. this.btnPick.UseVisualStyleBackColor = true;
  126. this.btnPick.Click += new System.EventHandler(this.btnPick_Click);
  127. //
  128. // btnClose
  129. //
  130. this.btnClose.Location = new System.Drawing.Point(636, 308);
  131. this.btnClose.Name = "btnClose";
  132. this.btnClose.Size = new System.Drawing.Size(75, 32);
  133. this.btnClose.TabIndex = 31;
  134. this.btnClose.Text = "關 閉";
  135. this.btnClose.UseVisualStyleBackColor = true;
  136. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  137. //
  138. // cbClosed
  139. //
  140. this.cbClosed.AutoSize = true;
  141. this.cbClosed.Location = new System.Drawing.Point(603, 10);
  142. this.cbClosed.Name = "cbClosed";
  143. this.cbClosed.Size = new System.Drawing.Size(108, 24);
  144. this.cbClosed.TabIndex = 32;
  145. this.cbClosed.Text = "含結案資料";
  146. this.cbClosed.UseVisualStyleBackColor = true;
  147. this.cbClosed.CheckedChanged += new System.EventHandler(this.cbClosed_CheckedChanged);
  148. //
  149. // cProjectID
  150. //
  151. this.cProjectID.DataPropertyName = "ProjectNumber";
  152. this.cProjectID.HeaderText = "專案編號";
  153. this.cProjectID.Name = "cProjectID";
  154. this.cProjectID.ReadOnly = true;
  155. //
  156. // cProjectName
  157. //
  158. this.cProjectName.DataPropertyName = "ProjectCName";
  159. this.cProjectName.HeaderText = "專案名稱";
  160. this.cProjectName.Name = "cProjectName";
  161. this.cProjectName.ReadOnly = true;
  162. this.cProjectName.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  163. this.cProjectName.Width = 300;
  164. //
  165. // PickProject
  166. //
  167. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F);
  168. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  169. this.ClientSize = new System.Drawing.Size(729, 349);
  170. this.ControlBox = false;
  171. this.Controls.Add(this.cbClosed);
  172. this.Controls.Add(this.dgvDataMaintain);
  173. this.Controls.Add(this.txtProjectName);
  174. this.Controls.Add(this.label2);
  175. this.Controls.Add(this.txtProjectNumber);
  176. this.Controls.Add(this.label1);
  177. this.Controls.Add(this.btnClean);
  178. this.Controls.Add(this.btnSearch);
  179. this.Controls.Add(this.btnPick);
  180. this.Controls.Add(this.btnClose);
  181. this.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
  182. this.Margin = new System.Windows.Forms.Padding(5);
  183. this.Name = "PickProject";
  184. this.Text = "選擇專案";
  185. this.Load += new System.EventHandler(this.PickProject_Load);
  186. ((System.ComponentModel.ISupportInitialize)(this.dgvDataMaintain)).EndInit();
  187. this.ResumeLayout(false);
  188. this.PerformLayout();
  189. }
  190. #endregion
  191. private System.Windows.Forms.DataGridView dgvDataMaintain;
  192. public System.Windows.Forms.TextBox txtProjectName;
  193. private System.Windows.Forms.Label label2;
  194. public System.Windows.Forms.TextBox txtProjectNumber;
  195. private System.Windows.Forms.Label label1;
  196. private System.Windows.Forms.Button btnClean;
  197. private System.Windows.Forms.Button btnSearch;
  198. private System.Windows.Forms.Button btnPick;
  199. private System.Windows.Forms.Button btnClose;
  200. private System.Windows.Forms.CheckBox cbClosed;
  201. private System.Windows.Forms.DataGridViewTextBoxColumn cProjectID;
  202. private System.Windows.Forms.DataGridViewTextBoxColumn cProjectName;
  203. }
  204. }