123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- namespace IntelligentControlForsx
- {
- partial class FrmAlarmByObject
- {
- /// <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.components = new System.ComponentModel.Container();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
- this.timer1 = new System.Windows.Forms.Timer(this.components);
- this.dgvAlarm = new System.Windows.Forms.DataGridView();
- this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column6 = new System.Windows.Forms.DataGridViewLinkColumn();
- this.Column_WindturbineId = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pnlTop = new System.Windows.Forms.Panel();
- this.panel1 = new System.Windows.Forms.Panel();
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.label6 = new System.Windows.Forms.Label();
- this.btnMax = new System.Windows.Forms.Button();
- this.panel2 = new System.Windows.Forms.Panel();
- this.btnClose = new System.Windows.Forms.Button();
- this.btnReset = new System.Windows.Forms.Label();
- this.btnStop = new System.Windows.Forms.Label();
- this.btnConfirm = new System.Windows.Forms.Label();
- this.btnSend = new System.Windows.Forms.Label();
- ((System.ComponentModel.ISupportInitialize)(this.dgvAlarm)).BeginInit();
- this.pnlTop.SuspendLayout();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.SuspendLayout();
- //
- // dgvAlarm
- //
- this.dgvAlarm.AllowUserToAddRows = false;
- this.dgvAlarm.AllowUserToDeleteRows = false;
- this.dgvAlarm.AllowUserToResizeColumns = false;
- this.dgvAlarm.AllowUserToResizeRows = false;
- dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
- dataGridViewCellStyle1.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
- dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvAlarm.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
- this.dgvAlarm.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvAlarm.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.Column1,
- this.Column2,
- this.Column3,
- this.Column4,
- this.Column5,
- this.Column6,
- this.Column_WindturbineId,
- this.Column8});
- this.dgvAlarm.Dock = System.Windows.Forms.DockStyle.Top;
- this.dgvAlarm.Location = new System.Drawing.Point(10, 71);
- this.dgvAlarm.Name = "dgvAlarm";
- this.dgvAlarm.RowTemplate.Height = 23;
- this.dgvAlarm.Size = new System.Drawing.Size(937, 451);
- this.dgvAlarm.TabIndex = 3;
- this.dgvAlarm.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvAlarm_CellContentDoubleClick);
- //
- // Column1
- //
- this.Column1.DataPropertyName = "LastUpdateTime";
- this.Column1.Frozen = true;
- this.Column1.HeaderText = "时间";
- this.Column1.Name = "Column1";
- this.Column1.Width = 130;
- //
- // Column2
- //
- this.Column2.DataPropertyName = "ObjectName";
- this.Column2.Frozen = true;
- this.Column2.HeaderText = "设备";
- this.Column2.Name = "Column2";
- this.Column2.Width = 150;
- //
- // Column3
- //
- this.Column3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.Column3.DataPropertyName = "AlertText";
- this.Column3.Frozen = true;
- this.Column3.HeaderText = "报警信息";
- this.Column3.Name = "Column3";
- this.Column3.Width = 420;
- //
- // Column4
- //
- this.Column4.DataPropertyName = "RankName";
- this.Column4.Frozen = true;
- this.Column4.HeaderText = "级别";
- this.Column4.Name = "Column4";
- this.Column4.Width = 85;
- //
- // Column5
- //
- this.Column5.DataPropertyName = "CategoryName";
- this.Column5.Frozen = true;
- this.Column5.HeaderText = "报警类型";
- this.Column5.Name = "Column5";
- //
- // Column6
- //
- this.Column6.Frozen = true;
- this.Column6.HeaderText = "操作";
- this.Column6.Name = "Column6";
- this.Column6.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.Column6.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.Column6.Text = "确认";
- this.Column6.UseColumnTextForLinkValue = true;
- this.Column6.Visible = false;
- this.Column6.Width = 80;
- //
- // Column_WindturbineId
- //
- this.Column_WindturbineId.DataPropertyName = "ObjectId";
- this.Column_WindturbineId.Frozen = true;
- this.Column_WindturbineId.HeaderText = "风机编号";
- this.Column_WindturbineId.Name = "Column_WindturbineId";
- this.Column_WindturbineId.Visible = false;
- //
- // Column8
- //
- this.Column8.DataPropertyName = "Id";
- this.Column8.Frozen = true;
- this.Column8.HeaderText = "id";
- this.Column8.Name = "Column8";
- this.Column8.Visible = false;
- //
- // pnlTop
- //
- this.pnlTop.BackgroundImage = global::IntelligentControlForsx.Properties.Resources.querytop;
- this.pnlTop.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.pnlTop.Controls.Add(this.panel1);
- this.pnlTop.Dock = System.Windows.Forms.DockStyle.Top;
- this.pnlTop.Location = new System.Drawing.Point(10, 10);
- this.pnlTop.Name = "pnlTop";
- this.pnlTop.Padding = new System.Windows.Forms.Padding(5, 7, 5, 5);
- this.pnlTop.Size = new System.Drawing.Size(937, 61);
- this.pnlTop.TabIndex = 2;
- //
- // panel1
- //
- this.panel1.BackColor = System.Drawing.Color.Transparent;
- this.panel1.Controls.Add(this.pictureBox1);
- this.panel1.Controls.Add(this.label6);
- this.panel1.Controls.Add(this.btnMax);
- this.panel1.Controls.Add(this.panel2);
- this.panel1.Controls.Add(this.btnClose);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(5, 7);
- this.panel1.Name = "panel1";
- this.panel1.Padding = new System.Windows.Forms.Padding(5, 0, 12, 0);
- this.panel1.Size = new System.Drawing.Size(927, 30);
- this.panel1.TabIndex = 1;
- this.panel1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseDown);
- //
- // pictureBox1
- //
- this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Left;
- this.pictureBox1.Image = global::IntelligentControlForsx.Properties.Resources.alarm;
- this.pictureBox1.Location = new System.Drawing.Point(5, 0);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(30, 30);
- this.pictureBox1.TabIndex = 5;
- this.pictureBox1.TabStop = false;
- //
- // label6
- //
- this.label6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label6.ForeColor = System.Drawing.Color.White;
- this.label6.Location = new System.Drawing.Point(37, 0);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(106, 30);
- this.label6.TabIndex = 4;
- this.label6.Text = "设备报警详情";
- this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.label6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseDown);
- //
- // btnMax
- //
- this.btnMax.BackgroundImage = global::IntelligentControlForsx.Properties.Resources.最大化;
- this.btnMax.Dock = System.Windows.Forms.DockStyle.Right;
- this.btnMax.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnMax.Location = new System.Drawing.Point(836, 0);
- this.btnMax.Name = "btnMax";
- this.btnMax.Size = new System.Drawing.Size(32, 30);
- this.btnMax.TabIndex = 3;
- this.btnMax.UseVisualStyleBackColor = true;
- this.btnMax.Click += new System.EventHandler(this.btnMax_Click);
- //
- // panel2
- //
- this.panel2.Dock = System.Windows.Forms.DockStyle.Right;
- this.panel2.Location = new System.Drawing.Point(868, 0);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(15, 30);
- this.panel2.TabIndex = 2;
- //
- // btnClose
- //
- this.btnClose.BackgroundImage = global::IntelligentControlForsx.Properties.Resources.关闭;
- this.btnClose.Dock = System.Windows.Forms.DockStyle.Right;
- this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnClose.Location = new System.Drawing.Point(883, 0);
- this.btnClose.Name = "btnClose";
- this.btnClose.Size = new System.Drawing.Size(32, 30);
- this.btnClose.TabIndex = 0;
- this.btnClose.UseVisualStyleBackColor = true;
- this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
- //
- // btnReset
- //
- this.btnReset.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(28)))), ((int)(((byte)(78)))), ((int)(((byte)(102)))));
- this.btnReset.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnReset.ForeColor = System.Drawing.Color.White;
- this.btnReset.Location = new System.Drawing.Point(274, 530);
- this.btnReset.Name = "btnReset";
- this.btnReset.Size = new System.Drawing.Size(75, 23);
- this.btnReset.TabIndex = 4;
- this.btnReset.Text = "复 位";
- this.btnReset.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
- //
- // btnStop
- //
- this.btnStop.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(28)))), ((int)(((byte)(78)))), ((int)(((byte)(102)))));
- this.btnStop.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.btnStop.ForeColor = System.Drawing.Color.White;
- this.btnStop.Location = new System.Drawing.Point(389, 530);
- this.btnStop.Name = "btnStop";
- this.btnStop.Size = new System.Drawing.Size(75, 23);
- this.btnStop.TabIndex = 5;
- this.btnStop.Text = "停 机";
- this.btnStop.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
- //
- // btnConfirm
- //
- this.btnConfirm.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(28)))), ((int)(((byte)(78)))), ((int)(((byte)(102)))));
- this.btnConfirm.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.btnConfirm.ForeColor = System.Drawing.Color.White;
- this.btnConfirm.Location = new System.Drawing.Point(504, 530);
- this.btnConfirm.Name = "btnConfirm";
- this.btnConfirm.Size = new System.Drawing.Size(75, 23);
- this.btnConfirm.TabIndex = 6;
- this.btnConfirm.Text = "确 认";
- this.btnConfirm.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
- //
- // btnSend
- //
- this.btnSend.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(28)))), ((int)(((byte)(78)))), ((int)(((byte)(102)))));
- this.btnSend.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.btnSend.ForeColor = System.Drawing.Color.White;
- this.btnSend.Location = new System.Drawing.Point(619, 530);
- this.btnSend.Name = "btnSend";
- this.btnSend.Size = new System.Drawing.Size(75, 23);
- this.btnSend.TabIndex = 7;
- this.btnSend.Text = "缺陷单";
- this.btnSend.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
- //
- // FrmAlarmByObject
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ClientSize = new System.Drawing.Size(957, 562);
- this.Controls.Add(this.btnSend);
- this.Controls.Add(this.btnConfirm);
- this.Controls.Add(this.btnStop);
- this.Controls.Add(this.btnReset);
- this.Controls.Add(this.dgvAlarm);
- this.Controls.Add(this.pnlTop);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Name = "FrmAlarmByObject";
- this.Padding = new System.Windows.Forms.Padding(10);
- this.Text = "当前报警查询";
- this.Load += new System.EventHandler(this.FrmAlarmByObject_Load);
- ((System.ComponentModel.ISupportInitialize)(this.dgvAlarm)).EndInit();
- this.pnlTop.ResumeLayout(false);
- this.panel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Timer timer1;
- private System.Windows.Forms.Panel pnlTop;
- private System.Windows.Forms.Button btnClose;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Button btnMax;
- private System.Windows.Forms.Panel panel2;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.DataGridView dgvAlarm;
- private System.Windows.Forms.Label btnReset;
- private System.Windows.Forms.Label btnStop;
- private System.Windows.Forms.Label btnConfirm;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column5;
- private System.Windows.Forms.DataGridViewLinkColumn Column6;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column_WindturbineId;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column8;
- private System.Windows.Forms.Label btnSend;
- }
- }
|