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.
210 lines
9.8 KiB
210 lines
9.8 KiB
namespace ManagementSystem
|
|
{
|
|
partial class PickProject
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.dgvDataMaintain = new System.Windows.Forms.DataGridView();
|
|
this.txtProjectName = new System.Windows.Forms.TextBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.txtProjectNumber = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.btnClean = new System.Windows.Forms.Button();
|
|
this.btnSearch = new System.Windows.Forms.Button();
|
|
this.btnPick = new System.Windows.Forms.Button();
|
|
this.btnClose = new System.Windows.Forms.Button();
|
|
this.cbClosed = new System.Windows.Forms.CheckBox();
|
|
this.cProjectID = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.cProjectName = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvDataMaintain)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dgvDataMaintain
|
|
//
|
|
this.dgvDataMaintain.AllowUserToAddRows = false;
|
|
this.dgvDataMaintain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.dgvDataMaintain.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgvDataMaintain.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.cProjectID,
|
|
this.cProjectName});
|
|
this.dgvDataMaintain.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
|
|
this.dgvDataMaintain.Location = new System.Drawing.Point(14, 44);
|
|
this.dgvDataMaintain.Margin = new System.Windows.Forms.Padding(5);
|
|
this.dgvDataMaintain.MultiSelect = false;
|
|
this.dgvDataMaintain.Name = "dgvDataMaintain";
|
|
this.dgvDataMaintain.RowTemplate.Height = 24;
|
|
this.dgvDataMaintain.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
|
this.dgvDataMaintain.Size = new System.Drawing.Size(697, 256);
|
|
this.dgvDataMaintain.TabIndex = 27;
|
|
this.dgvDataMaintain.DoubleClick += new System.EventHandler(this.dgvDataMaintain_DoubleClick);
|
|
//
|
|
// txtProjectName
|
|
//
|
|
this.txtProjectName.Location = new System.Drawing.Point(349, 8);
|
|
this.txtProjectName.Name = "txtProjectName";
|
|
this.txtProjectName.Size = new System.Drawing.Size(205, 29);
|
|
this.txtProjectName.TabIndex = 24;
|
|
this.txtProjectName.TextChanged += new System.EventHandler(this.txtProjectName_TextChanged);
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(266, 11);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(89, 20);
|
|
this.label2.TabIndex = 25;
|
|
this.label2.Text = "專案名稱:";
|
|
//
|
|
// txtProjectNumber
|
|
//
|
|
this.txtProjectNumber.Location = new System.Drawing.Point(110, 8);
|
|
this.txtProjectNumber.Name = "txtProjectNumber";
|
|
this.txtProjectNumber.Size = new System.Drawing.Size(131, 29);
|
|
this.txtProjectNumber.TabIndex = 23;
|
|
this.txtProjectNumber.TextChanged += new System.EventHandler(this.txtProjectNumber_TextChanged);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(22, 11);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(89, 20);
|
|
this.label1.TabIndex = 26;
|
|
this.label1.Text = "專案編號:";
|
|
//
|
|
// btnClean
|
|
//
|
|
this.btnClean.Location = new System.Drawing.Point(555, 308);
|
|
this.btnClean.Name = "btnClean";
|
|
this.btnClean.Size = new System.Drawing.Size(75, 32);
|
|
this.btnClean.TabIndex = 28;
|
|
this.btnClean.Text = "清 除";
|
|
this.btnClean.UseVisualStyleBackColor = true;
|
|
this.btnClean.Click += new System.EventHandler(this.btnClean_Click);
|
|
//
|
|
// btnSearch
|
|
//
|
|
this.btnSearch.Location = new System.Drawing.Point(474, 308);
|
|
this.btnSearch.Name = "btnSearch";
|
|
this.btnSearch.Size = new System.Drawing.Size(75, 32);
|
|
this.btnSearch.TabIndex = 29;
|
|
this.btnSearch.Text = "查 詢";
|
|
this.btnSearch.UseVisualStyleBackColor = true;
|
|
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
|
|
//
|
|
// btnPick
|
|
//
|
|
this.btnPick.Location = new System.Drawing.Point(393, 308);
|
|
this.btnPick.Name = "btnPick";
|
|
this.btnPick.Size = new System.Drawing.Size(75, 32);
|
|
this.btnPick.TabIndex = 30;
|
|
this.btnPick.Text = "選 擇";
|
|
this.btnPick.UseVisualStyleBackColor = true;
|
|
this.btnPick.Click += new System.EventHandler(this.btnPick_Click);
|
|
//
|
|
// btnClose
|
|
//
|
|
this.btnClose.Location = new System.Drawing.Point(636, 308);
|
|
this.btnClose.Name = "btnClose";
|
|
this.btnClose.Size = new System.Drawing.Size(75, 32);
|
|
this.btnClose.TabIndex = 31;
|
|
this.btnClose.Text = "關 閉";
|
|
this.btnClose.UseVisualStyleBackColor = true;
|
|
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
|
//
|
|
// cbClosed
|
|
//
|
|
this.cbClosed.AutoSize = true;
|
|
this.cbClosed.Location = new System.Drawing.Point(603, 10);
|
|
this.cbClosed.Name = "cbClosed";
|
|
this.cbClosed.Size = new System.Drawing.Size(108, 24);
|
|
this.cbClosed.TabIndex = 32;
|
|
this.cbClosed.Text = "含結案資料";
|
|
this.cbClosed.UseVisualStyleBackColor = true;
|
|
this.cbClosed.CheckedChanged += new System.EventHandler(this.cbClosed_CheckedChanged);
|
|
//
|
|
// cProjectID
|
|
//
|
|
this.cProjectID.DataPropertyName = "ProjectNumber";
|
|
this.cProjectID.HeaderText = "專案編號";
|
|
this.cProjectID.Name = "cProjectID";
|
|
this.cProjectID.ReadOnly = true;
|
|
//
|
|
// cProjectName
|
|
//
|
|
this.cProjectName.DataPropertyName = "ProjectCName";
|
|
this.cProjectName.HeaderText = "專案名稱";
|
|
this.cProjectName.Name = "cProjectName";
|
|
this.cProjectName.ReadOnly = true;
|
|
this.cProjectName.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
|
this.cProjectName.Width = 300;
|
|
//
|
|
// PickProject
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(729, 349);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.cbClosed);
|
|
this.Controls.Add(this.dgvDataMaintain);
|
|
this.Controls.Add(this.txtProjectName);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.txtProjectNumber);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.btnClean);
|
|
this.Controls.Add(this.btnSearch);
|
|
this.Controls.Add(this.btnPick);
|
|
this.Controls.Add(this.btnClose);
|
|
this.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
|
|
this.Margin = new System.Windows.Forms.Padding(5);
|
|
this.Name = "PickProject";
|
|
this.Text = "選擇專案";
|
|
this.Load += new System.EventHandler(this.PickProject_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvDataMaintain)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dgvDataMaintain;
|
|
public System.Windows.Forms.TextBox txtProjectName;
|
|
private System.Windows.Forms.Label label2;
|
|
public System.Windows.Forms.TextBox txtProjectNumber;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button btnClean;
|
|
private System.Windows.Forms.Button btnSearch;
|
|
private System.Windows.Forms.Button btnPick;
|
|
private System.Windows.Forms.Button btnClose;
|
|
private System.Windows.Forms.CheckBox cbClosed;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn cProjectID;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn cProjectName;
|
|
}
|
|
}
|