namespace SA_LTT_UI.Viewer
|
{
|
partial class AlarmViewer
|
{
|
/// <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.btn_BuzzerStop = new System.Windows.Forms.Button();
|
this.btn_AlarmClear = new System.Windows.Forms.Button();
|
this.lb_Description = new System.Windows.Forms.Label();
|
this.dgv_OccurredAlarms = new System.Windows.Forms.DataGridView();
|
this.TIME = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.NAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.Description = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.HEAVY = new System.Windows.Forms.DataGridViewCheckBoxColumn();
|
((System.ComponentModel.ISupportInitialize)(this.dgv_OccurredAlarms)).BeginInit();
|
this.SuspendLayout();
|
//
|
// btn_BuzzerStop
|
//
|
this.btn_BuzzerStop.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
this.btn_BuzzerStop.Location = new System.Drawing.Point(643, 118);
|
this.btn_BuzzerStop.Name = "btn_BuzzerStop";
|
this.btn_BuzzerStop.Size = new System.Drawing.Size(120, 28);
|
this.btn_BuzzerStop.TabIndex = 17;
|
this.btn_BuzzerStop.Text = "Buzzer Stop";
|
this.btn_BuzzerStop.UseVisualStyleBackColor = true;
|
this.btn_BuzzerStop.Click += new System.EventHandler(this.btn_BuzzerStop_Click);
|
//
|
// btn_AlarmClear
|
//
|
this.btn_AlarmClear.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
this.btn_AlarmClear.Location = new System.Drawing.Point(517, 118);
|
this.btn_AlarmClear.Name = "btn_AlarmClear";
|
this.btn_AlarmClear.Size = new System.Drawing.Size(120, 28);
|
this.btn_AlarmClear.TabIndex = 16;
|
this.btn_AlarmClear.Text = "Alarm Clear";
|
this.btn_AlarmClear.UseVisualStyleBackColor = true;
|
this.btn_AlarmClear.Click += new System.EventHandler(this.btn_AlarmClear_Click);
|
//
|
// lb_Description
|
//
|
this.lb_Description.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.lb_Description.Location = new System.Drawing.Point(11, 18);
|
this.lb_Description.Name = "lb_Description";
|
this.lb_Description.Size = new System.Drawing.Size(752, 96);
|
this.lb_Description.TabIndex = 15;
|
this.lb_Description.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
//
|
// dgv_OccurredAlarms
|
//
|
this.dgv_OccurredAlarms.AllowUserToAddRows = false;
|
this.dgv_OccurredAlarms.AllowUserToDeleteRows = false;
|
this.dgv_OccurredAlarms.AllowUserToResizeColumns = false;
|
this.dgv_OccurredAlarms.AllowUserToResizeRows = false;
|
this.dgv_OccurredAlarms.BackgroundColor = System.Drawing.Color.White;
|
this.dgv_OccurredAlarms.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
|
this.dgv_OccurredAlarms.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
|
this.dgv_OccurredAlarms.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
this.TIME,
|
this.NAME,
|
this.Description,
|
this.HEAVY});
|
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
|
dataGridViewCellStyle1.BackColor = System.Drawing.Color.White;
|
dataGridViewCellStyle1.Font = new System.Drawing.Font("Gulim", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
dataGridViewCellStyle1.ForeColor = System.Drawing.Color.White;
|
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.SteelBlue;
|
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.White;
|
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
|
this.dgv_OccurredAlarms.DefaultCellStyle = dataGridViewCellStyle1;
|
this.dgv_OccurredAlarms.EnableHeadersVisualStyles = false;
|
this.dgv_OccurredAlarms.GridColor = System.Drawing.Color.SteelBlue;
|
this.dgv_OccurredAlarms.Location = new System.Drawing.Point(11, 151);
|
this.dgv_OccurredAlarms.MultiSelect = false;
|
this.dgv_OccurredAlarms.Name = "dgv_OccurredAlarms";
|
this.dgv_OccurredAlarms.ReadOnly = true;
|
this.dgv_OccurredAlarms.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
|
this.dgv_OccurredAlarms.RowHeadersVisible = false;
|
this.dgv_OccurredAlarms.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
|
dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
|
dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.CornflowerBlue;
|
this.dgv_OccurredAlarms.RowsDefaultCellStyle = dataGridViewCellStyle2;
|
this.dgv_OccurredAlarms.RowTemplate.Height = 23;
|
this.dgv_OccurredAlarms.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
this.dgv_OccurredAlarms.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
this.dgv_OccurredAlarms.Size = new System.Drawing.Size(751, 400);
|
this.dgv_OccurredAlarms.TabIndex = 14;
|
this.dgv_OccurredAlarms.SelectionChanged += new System.EventHandler(this.dgv_OccurredAlarms_SelectionChanged);
|
//
|
// TIME
|
//
|
this.TIME.HeaderText = "TIME";
|
this.TIME.Name = "TIME";
|
this.TIME.ReadOnly = true;
|
this.TIME.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
this.TIME.Width = 160;
|
//
|
// NAME
|
//
|
this.NAME.HeaderText = "NAME";
|
this.NAME.Name = "NAME";
|
this.NAME.ReadOnly = true;
|
this.NAME.Resizable = System.Windows.Forms.DataGridViewTriState.False;
|
this.NAME.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
this.NAME.Width = 300;
|
//
|
// Description
|
//
|
this.Description.HeaderText = "DESCRIPTION";
|
this.Description.Name = "Description";
|
this.Description.ReadOnly = true;
|
this.Description.Resizable = System.Windows.Forms.DataGridViewTriState.False;
|
this.Description.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
this.Description.Width = 200;
|
//
|
// HEAVY
|
//
|
this.HEAVY.HeaderText = "HEAVY";
|
this.HEAVY.Name = "HEAVY";
|
this.HEAVY.ReadOnly = true;
|
this.HEAVY.Resizable = System.Windows.Forms.DataGridViewTriState.False;
|
//
|
// AlarmViewer
|
//
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.ClientSize = new System.Drawing.Size(775, 569);
|
this.Controls.Add(this.btn_BuzzerStop);
|
this.Controls.Add(this.btn_AlarmClear);
|
this.Controls.Add(this.lb_Description);
|
this.Controls.Add(this.dgv_OccurredAlarms);
|
this.Name = "AlarmViewer";
|
this.Text = "AlarmViewer";
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.AlarmViewer_FormClosing);
|
((System.ComponentModel.ISupportInitialize)(this.dgv_OccurredAlarms)).EndInit();
|
this.ResumeLayout(false);
|
|
}
|
|
#endregion
|
|
private System.Windows.Forms.Button btn_BuzzerStop;
|
private System.Windows.Forms.Button btn_AlarmClear;
|
private System.Windows.Forms.Label lb_Description;
|
private System.Windows.Forms.DataGridView dgv_OccurredAlarms;
|
private System.Windows.Forms.DataGridViewTextBoxColumn TIME;
|
private System.Windows.Forms.DataGridViewTextBoxColumn NAME;
|
private System.Windows.Forms.DataGridViewTextBoxColumn Description;
|
private System.Windows.Forms.DataGridViewCheckBoxColumn HEAVY;
|
}
|
}
|