namespace SHARP_CLAS_UI
|
{
|
partial class Form_Alarm_List
|
{
|
/// <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.dgv_Alarm_list = new System.Windows.Forms.DataGridView();
|
this.TIME = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.NAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.Discription = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.HEAVY = new System.Windows.Forms.DataGridViewCheckBoxColumn();
|
this.label1 = new System.Windows.Forms.Label();
|
this.lb_Description = new System.Windows.Forms.Label();
|
this.btn_Alarm_Clear = new System.Windows.Forms.Button();
|
this.btn_Buzzer_Stop = new System.Windows.Forms.Button();
|
((System.ComponentModel.ISupportInitialize)(this.dgv_Alarm_list)).BeginInit();
|
this.SuspendLayout();
|
//
|
// dgv_Alarm_list
|
//
|
this.dgv_Alarm_list.AllowUserToAddRows = false;
|
this.dgv_Alarm_list.AllowUserToDeleteRows = false;
|
this.dgv_Alarm_list.AllowUserToResizeColumns = false;
|
this.dgv_Alarm_list.AllowUserToResizeRows = false;
|
this.dgv_Alarm_list.BackgroundColor = System.Drawing.Color.White;
|
this.dgv_Alarm_list.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
|
this.dgv_Alarm_list.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
|
this.dgv_Alarm_list.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
this.TIME,
|
this.NAME,
|
this.Discription,
|
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_Alarm_list.DefaultCellStyle = dataGridViewCellStyle1;
|
this.dgv_Alarm_list.EnableHeadersVisualStyles = false;
|
this.dgv_Alarm_list.GridColor = System.Drawing.Color.SteelBlue;
|
this.dgv_Alarm_list.Location = new System.Drawing.Point(12, 160);
|
this.dgv_Alarm_list.MultiSelect = false;
|
this.dgv_Alarm_list.Name = "dgv_Alarm_list";
|
this.dgv_Alarm_list.ReadOnly = true;
|
this.dgv_Alarm_list.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
|
this.dgv_Alarm_list.RowHeadersVisible = false;
|
this.dgv_Alarm_list.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
|
dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
|
dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.CornflowerBlue;
|
this.dgv_Alarm_list.RowsDefaultCellStyle = dataGridViewCellStyle2;
|
this.dgv_Alarm_list.RowTemplate.Height = 23;
|
this.dgv_Alarm_list.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
this.dgv_Alarm_list.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
this.dgv_Alarm_list.Size = new System.Drawing.Size(751, 400);
|
this.dgv_Alarm_list.TabIndex = 3;
|
this.dgv_Alarm_list.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_Alarm_list_CellClick);
|
//
|
// 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;
|
//
|
// Discription
|
//
|
this.Discription.HeaderText = "DISCRIPTION";
|
this.Discription.Name = "Discription";
|
this.Discription.ReadOnly = true;
|
this.Discription.Resizable = System.Windows.Forms.DataGridViewTriState.False;
|
this.Discription.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
this.Discription.Width = 200;
|
//
|
// HEAVY
|
//
|
this.HEAVY.HeaderText = "HEAVY";
|
this.HEAVY.Name = "HEAVY";
|
this.HEAVY.ReadOnly = true;
|
this.HEAVY.Resizable = System.Windows.Forms.DataGridViewTriState.False;
|
//
|
// label1
|
//
|
this.label1.AutoSize = true;
|
this.label1.Location = new System.Drawing.Point(12, 9);
|
this.label1.Name = "label1";
|
this.label1.Size = new System.Drawing.Size(98, 12);
|
this.label1.TabIndex = 4;
|
this.label1.Text = "DESCRIPTION : ";
|
//
|
// lb_Description
|
//
|
this.lb_Description.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.lb_Description.Location = new System.Drawing.Point(12, 27);
|
this.lb_Description.Name = "lb_Description";
|
this.lb_Description.Size = new System.Drawing.Size(752, 96);
|
this.lb_Description.TabIndex = 5;
|
this.lb_Description.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
//
|
// btn_Alarm_Clear
|
//
|
this.btn_Alarm_Clear.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
this.btn_Alarm_Clear.Location = new System.Drawing.Point(518, 127);
|
this.btn_Alarm_Clear.Name = "btn_Alarm_Clear";
|
this.btn_Alarm_Clear.Size = new System.Drawing.Size(120, 28);
|
this.btn_Alarm_Clear.TabIndex = 7;
|
this.btn_Alarm_Clear.Text = "Alarm Clear";
|
this.btn_Alarm_Clear.UseVisualStyleBackColor = true;
|
this.btn_Alarm_Clear.Click += new System.EventHandler(this.btn_Alarm_Clear_Click);
|
//
|
// btn_Buzzer_Stop
|
//
|
this.btn_Buzzer_Stop.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
this.btn_Buzzer_Stop.Location = new System.Drawing.Point(644, 127);
|
this.btn_Buzzer_Stop.Name = "btn_Buzzer_Stop";
|
this.btn_Buzzer_Stop.Size = new System.Drawing.Size(120, 28);
|
this.btn_Buzzer_Stop.TabIndex = 8;
|
this.btn_Buzzer_Stop.Text = "Buzzer Stop";
|
this.btn_Buzzer_Stop.UseVisualStyleBackColor = true;
|
this.btn_Buzzer_Stop.Click += new System.EventHandler(this.btn_Buzzer_Stop_Click);
|
//
|
// Form_Alarm_List
|
//
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.BackColor = System.Drawing.Color.White;
|
this.ClientSize = new System.Drawing.Size(775, 569);
|
this.Controls.Add(this.btn_Buzzer_Stop);
|
this.Controls.Add(this.btn_Alarm_Clear);
|
this.Controls.Add(this.lb_Description);
|
this.Controls.Add(this.label1);
|
this.Controls.Add(this.dgv_Alarm_list);
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
this.Name = "Form_Alarm_List";
|
this.Text = "Alarm List";
|
this.TopMost = true;
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form_Alarm_List_FormClosing);
|
((System.ComponentModel.ISupportInitialize)(this.dgv_Alarm_list)).EndInit();
|
this.ResumeLayout(false);
|
this.PerformLayout();
|
|
}
|
|
#endregion
|
|
private System.Windows.Forms.DataGridView dgv_Alarm_list;
|
private System.Windows.Forms.Label label1;
|
private System.Windows.Forms.Label lb_Description;
|
private System.Windows.Forms.Button btn_Alarm_Clear;
|
private System.Windows.Forms.Button btn_Buzzer_Stop;
|
private System.Windows.Forms.DataGridViewTextBoxColumn TIME;
|
private System.Windows.Forms.DataGridViewTextBoxColumn NAME;
|
private System.Windows.Forms.DataGridViewTextBoxColumn Discription;
|
private System.Windows.Forms.DataGridViewCheckBoxColumn HEAVY;
|
}
|
}
|