112 lines
4.6 KiB
C#
112 lines
4.6 KiB
C#
namespace AGVSystem
|
|
{
|
|
// Token: 0x0200001E RID: 30
|
|
public partial class warnlist : global::System.Windows.Forms.Form
|
|
{
|
|
// Token: 0x060001C0 RID: 448 RVA: 0x0004A764 File Offset: 0x00048964
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
bool flag = disposing && this.components != null;
|
|
if (flag)
|
|
{
|
|
this.components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
// Token: 0x060001C1 RID: 449 RVA: 0x0004A79C File Offset: 0x0004899C
|
|
private void InitializeComponent()
|
|
{
|
|
global::System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle = new global::System.Windows.Forms.DataGridViewCellStyle();
|
|
this.dgv_Alarm = new global::System.Windows.Forms.DataGridView();
|
|
this.时间 = new global::System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.线体名称 = new global::System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.内部编号 = new global::System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.报警信息 = new global::System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.agvNo = new global::System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
((global::System.ComponentModel.ISupportInitialize)this.dgv_Alarm).BeginInit();
|
|
base.SuspendLayout();
|
|
this.dgv_Alarm.AllowUserToAddRows = false;
|
|
this.dgv_Alarm.AllowUserToDeleteRows = false;
|
|
this.dgv_Alarm.AllowUserToOrderColumns = true;
|
|
this.dgv_Alarm.AllowUserToResizeRows = false;
|
|
this.dgv_Alarm.BackgroundColor = global::System.Drawing.Color.White;
|
|
this.dgv_Alarm.ColumnHeadersHeight = 25;
|
|
this.dgv_Alarm.Columns.AddRange(new global::System.Windows.Forms.DataGridViewColumn[]
|
|
{
|
|
this.时间,
|
|
this.线体名称,
|
|
this.内部编号,
|
|
this.报警信息,
|
|
this.agvNo
|
|
});
|
|
this.dgv_Alarm.Dock = global::System.Windows.Forms.DockStyle.Fill;
|
|
this.dgv_Alarm.Location = new global::System.Drawing.Point(0, 0);
|
|
this.dgv_Alarm.Name = "dgv_Alarm";
|
|
this.dgv_Alarm.ReadOnly = true;
|
|
this.dgv_Alarm.RowHeadersVisible = false;
|
|
dataGridViewCellStyle.ForeColor = global::System.Drawing.Color.FromArgb(192, 0, 0);
|
|
this.dgv_Alarm.RowsDefaultCellStyle = dataGridViewCellStyle;
|
|
this.dgv_Alarm.RowTemplate.Height = 30;
|
|
this.dgv_Alarm.SelectionMode = global::System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
|
this.dgv_Alarm.Size = new global::System.Drawing.Size(1044, 475);
|
|
this.dgv_Alarm.TabIndex = 7;
|
|
this.时间.DataPropertyName = "时间";
|
|
this.时间.HeaderText = "时间";
|
|
this.时间.Name = "时间";
|
|
this.时间.ReadOnly = true;
|
|
this.时间.Width = 150;
|
|
this.线体名称.DataPropertyName = "线体名称";
|
|
this.线体名称.HeaderText = "线体名称";
|
|
this.线体名称.Name = "线体名称";
|
|
this.线体名称.ReadOnly = true;
|
|
this.线体名称.Width = 130;
|
|
this.内部编号.DataPropertyName = "内部编号";
|
|
this.内部编号.HeaderText = "设备序号";
|
|
this.内部编号.Name = "内部编号";
|
|
this.内部编号.ReadOnly = true;
|
|
this.报警信息.DataPropertyName = "报警信息";
|
|
this.报警信息.HeaderText = "报警信息";
|
|
this.报警信息.Name = "报警信息";
|
|
this.报警信息.ReadOnly = true;
|
|
this.报警信息.Width = 250;
|
|
this.agvNo.HeaderText = "Column1";
|
|
this.agvNo.Name = "agvNo";
|
|
this.agvNo.ReadOnly = true;
|
|
this.agvNo.Visible = false;
|
|
base.AutoScaleDimensions = new global::System.Drawing.SizeF(6f, 12f);
|
|
base.AutoScaleMode = global::System.Windows.Forms.AutoScaleMode.Font;
|
|
base.ClientSize = new global::System.Drawing.Size(1044, 475);
|
|
base.Controls.Add(this.dgv_Alarm);
|
|
base.Name = "warnlist";
|
|
base.StartPosition = global::System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "设备报警列表";
|
|
base.TopMost = true;
|
|
base.Load += new global::System.EventHandler(this.warnlist_Load);
|
|
((global::System.ComponentModel.ISupportInitialize)this.dgv_Alarm).EndInit();
|
|
base.ResumeLayout(false);
|
|
}
|
|
|
|
// Token: 0x0400057E RID: 1406
|
|
private global::System.ComponentModel.IContainer components = null;
|
|
|
|
// Token: 0x0400057F RID: 1407
|
|
private global::System.Windows.Forms.DataGridView dgv_Alarm;
|
|
|
|
// Token: 0x04000580 RID: 1408
|
|
private global::System.Windows.Forms.DataGridViewTextBoxColumn 时间;
|
|
|
|
// Token: 0x04000581 RID: 1409
|
|
private global::System.Windows.Forms.DataGridViewTextBoxColumn 线体名称;
|
|
|
|
// Token: 0x04000582 RID: 1410
|
|
private global::System.Windows.Forms.DataGridViewTextBoxColumn 内部编号;
|
|
|
|
// Token: 0x04000583 RID: 1411
|
|
private global::System.Windows.Forms.DataGridViewTextBoxColumn 报警信息;
|
|
|
|
// Token: 0x04000584 RID: 1412
|
|
private global::System.Windows.Forms.DataGridViewTextBoxColumn agvNo;
|
|
}
|
|
}
|