namespace M423project
|
{
|
partial class FormWarning
|
{
|
/// <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()
|
{
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
|
this.panel1 = new System.Windows.Forms.Panel();
|
this.cboType = new System.Windows.Forms.ComboBox();
|
this.lblType = new System.Windows.Forms.Label();
|
this.btnQuery = new System.Windows.Forms.Button();
|
this.dtEnd = new System.Windows.Forms.DateTimePicker();
|
this.label1 = new System.Windows.Forms.Label();
|
this.dtBegin = new System.Windows.Forms.DateTimePicker();
|
this.lblDate = new System.Windows.Forms.Label();
|
this.panel2 = new System.Windows.Forms.Panel();
|
this.grid = new System.Windows.Forms.DataGridView();
|
this.Type = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.Time = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.ClearTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.panel1.SuspendLayout();
|
this.panel2.SuspendLayout();
|
((System.ComponentModel.ISupportInitialize)(this.grid)).BeginInit();
|
this.SuspendLayout();
|
//
|
// panel1
|
//
|
this.panel1.Controls.Add(this.cboType);
|
this.panel1.Controls.Add(this.lblType);
|
this.panel1.Controls.Add(this.btnQuery);
|
this.panel1.Controls.Add(this.dtEnd);
|
this.panel1.Controls.Add(this.label1);
|
this.panel1.Controls.Add(this.dtBegin);
|
this.panel1.Controls.Add(this.lblDate);
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
|
this.panel1.Location = new System.Drawing.Point(0, 0);
|
this.panel1.Name = "panel1";
|
this.panel1.Size = new System.Drawing.Size(1155, 54);
|
this.panel1.TabIndex = 0;
|
//
|
// cboType
|
//
|
this.cboType.FormattingEnabled = true;
|
this.cboType.Location = new System.Drawing.Point(62, 15);
|
this.cboType.Name = "cboType";
|
this.cboType.Size = new System.Drawing.Size(387, 26);
|
this.cboType.TabIndex = 6;
|
this.cboType.TextUpdate += new System.EventHandler(this.cboType_TextUpdate);
|
//
|
// lblType
|
//
|
this.lblType.AutoSize = true;
|
this.lblType.Location = new System.Drawing.Point(12, 19);
|
this.lblType.Name = "lblType";
|
this.lblType.Size = new System.Drawing.Size(44, 18);
|
this.lblType.TabIndex = 5;
|
this.lblType.Text = "類型";
|
//
|
// btnQuery
|
//
|
this.btnQuery.Location = new System.Drawing.Point(1052, 9);
|
this.btnQuery.Name = "btnQuery";
|
this.btnQuery.Size = new System.Drawing.Size(75, 36);
|
this.btnQuery.TabIndex = 4;
|
this.btnQuery.Text = "查詢";
|
this.btnQuery.UseVisualStyleBackColor = true;
|
this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
|
//
|
// dtEnd
|
//
|
this.dtEnd.Location = new System.Drawing.Point(759, 13);
|
this.dtEnd.Name = "dtEnd";
|
this.dtEnd.Size = new System.Drawing.Size(200, 28);
|
this.dtEnd.TabIndex = 3;
|
//
|
// label1
|
//
|
this.label1.AutoSize = true;
|
this.label1.Location = new System.Drawing.Point(736, 27);
|
this.label1.Name = "label1";
|
this.label1.Size = new System.Drawing.Size(17, 18);
|
this.label1.TabIndex = 2;
|
this.label1.Text = "~";
|
//
|
// dtBegin
|
//
|
this.dtBegin.Location = new System.Drawing.Point(527, 13);
|
this.dtBegin.Name = "dtBegin";
|
this.dtBegin.Size = new System.Drawing.Size(200, 28);
|
this.dtBegin.TabIndex = 1;
|
//
|
// lblDate
|
//
|
this.lblDate.AutoSize = true;
|
this.lblDate.Location = new System.Drawing.Point(466, 20);
|
this.lblDate.Name = "lblDate";
|
this.lblDate.Size = new System.Drawing.Size(44, 18);
|
this.lblDate.TabIndex = 0;
|
this.lblDate.Text = "日期";
|
//
|
// panel2
|
//
|
this.panel2.Controls.Add(this.grid);
|
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.panel2.Location = new System.Drawing.Point(0, 54);
|
this.panel2.Name = "panel2";
|
this.panel2.Size = new System.Drawing.Size(1155, 592);
|
this.panel2.TabIndex = 1;
|
//
|
// grid
|
//
|
this.grid.AllowUserToAddRows = false;
|
this.grid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
this.grid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
this.Type,
|
this.Time,
|
this.ClearTime});
|
this.grid.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.grid.Location = new System.Drawing.Point(0, 0);
|
this.grid.Name = "grid";
|
this.grid.ReadOnly = true;
|
this.grid.RowTemplate.Height = 30;
|
this.grid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
this.grid.Size = new System.Drawing.Size(1155, 592);
|
this.grid.TabIndex = 0;
|
//
|
// Type
|
//
|
this.Type.DataPropertyName = "Type";
|
this.Type.HeaderText = "類型";
|
this.Type.Name = "Type";
|
this.Type.ReadOnly = true;
|
this.Type.Width = 400;
|
//
|
// Time
|
//
|
this.Time.DataPropertyName = "Time";
|
dataGridViewCellStyle1.Format = "yyyy-MM-dd HH:mm:ss";
|
this.Time.DefaultCellStyle = dataGridViewCellStyle1;
|
this.Time.HeaderText = "警報時間";
|
this.Time.Name = "Time";
|
this.Time.ReadOnly = true;
|
this.Time.Width = 150;
|
//
|
// ClearTime
|
//
|
this.ClearTime.DataPropertyName = "ClearTime";
|
dataGridViewCellStyle2.Format = "yyyy-MM-dd HH:mm:ss";
|
this.ClearTime.DefaultCellStyle = dataGridViewCellStyle2;
|
this.ClearTime.HeaderText = "清除時間";
|
this.ClearTime.Name = "ClearTime";
|
this.ClearTime.ReadOnly = true;
|
this.ClearTime.Width = 150;
|
//
|
// FormWarning
|
//
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.ClientSize = new System.Drawing.Size(1155, 646);
|
this.Controls.Add(this.panel2);
|
this.Controls.Add(this.panel1);
|
this.Name = "FormWarning";
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
this.Text = "報警查詢";
|
this.panel1.ResumeLayout(false);
|
this.panel1.PerformLayout();
|
this.panel2.ResumeLayout(false);
|
((System.ComponentModel.ISupportInitialize)(this.grid)).EndInit();
|
this.ResumeLayout(false);
|
|
}
|
|
#endregion
|
|
private System.Windows.Forms.Panel panel1;
|
private System.Windows.Forms.Label lblDate;
|
private System.Windows.Forms.Panel panel2;
|
private System.Windows.Forms.DateTimePicker dtEnd;
|
private System.Windows.Forms.Label label1;
|
private System.Windows.Forms.DateTimePicker dtBegin;
|
private System.Windows.Forms.DataGridView grid;
|
private System.Windows.Forms.Button btnQuery;
|
private System.Windows.Forms.ComboBox cboType;
|
private System.Windows.Forms.Label lblType;
|
private System.Windows.Forms.DataGridViewTextBoxColumn Type;
|
private System.Windows.Forms.DataGridViewTextBoxColumn Time;
|
private System.Windows.Forms.DataGridViewTextBoxColumn ClearTime;
|
}
|
}
|