iMonitor desktop application using dotnet 4.8
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
4.0 KiB

2 weeks ago
namespace iMonitorApp
{
// Token: 0x02000016 RID: 22
public partial class StackAlarm : global::System.Windows.Forms.Form
{
// Token: 0x060000A1 RID: 161 RVA: 0x00007298 File Offset: 0x00005498
protected override void Dispose(bool disposing)
{
bool flag = disposing && this.components != null;
if (flag)
{
this.components.Dispose();
}
base.Dispose(disposing);
}
// Token: 0x060000A2 RID: 162 RVA: 0x000072D0 File Offset: 0x000054D0
private void InitializeComponent()
{
this.tb_log = new global::System.Windows.Forms.TextBox();
this.dataGridView1 = new global::System.Windows.Forms.DataGridView();
this.statusStrip1 = new global::System.Windows.Forms.StatusStrip();
this.lbl_consecutiveFails = new global::System.Windows.Forms.ToolStripStatusLabel();
((global::System.ComponentModel.ISupportInitialize)this.dataGridView1).BeginInit();
this.statusStrip1.SuspendLayout();
base.SuspendLayout();
this.tb_log.Font = new global::System.Drawing.Font("Consolas", 6.75f, global::System.Drawing.FontStyle.Regular, global::System.Drawing.GraphicsUnit.Point, 0);
this.tb_log.Location = new global::System.Drawing.Point(13, 342);
this.tb_log.Multiline = true;
this.tb_log.Name = "tb_log";
this.tb_log.ScrollBars = global::System.Windows.Forms.ScrollBars.Vertical;
this.tb_log.Size = new global::System.Drawing.Size(1178, 83);
this.tb_log.TabIndex = 1;
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
this.dataGridView1.AllowUserToOrderColumns = true;
this.dataGridView1.ColumnHeadersHeightSizeMode = global::System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Dock = global::System.Windows.Forms.DockStyle.Fill;
this.dataGridView1.EditMode = global::System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
this.dataGridView1.Location = new global::System.Drawing.Point(0, 0);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.ReadOnly = true;
this.dataGridView1.Size = new global::System.Drawing.Size(1203, 437);
this.dataGridView1.TabIndex = 2;
this.dataGridView1.DataError += new global::System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dataGridView1_DataError);
this.statusStrip1.Items.AddRange(new global::System.Windows.Forms.ToolStripItem[]
{
this.lbl_consecutiveFails
});
this.statusStrip1.Location = new global::System.Drawing.Point(0, 415);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new global::System.Drawing.Size(1203, 22);
this.statusStrip1.TabIndex = 3;
this.statusStrip1.Text = "statusStrip1";
this.lbl_consecutiveFails.Name = "lbl_consecutiveFails";
this.lbl_consecutiveFails.Size = new global::System.Drawing.Size(109, 17);
this.lbl_consecutiveFails.Text = "toolStripStatusLabel1";
base.AutoScaleDimensions = new global::System.Drawing.SizeF(6f, 13f);
base.AutoScaleMode = global::System.Windows.Forms.AutoScaleMode.Font;
base.ClientSize = new global::System.Drawing.Size(1203, 437);
base.ControlBox = false;
base.Controls.Add(this.statusStrip1);
base.Controls.Add(this.dataGridView1);
base.Controls.Add(this.tb_log);
this.tb_log.Show();
base.Name = "StackAlarm";
base.ShowInTaskbar = false;
this.Text = "Emails";
((global::System.ComponentModel.ISupportInitialize)this.dataGridView1).EndInit();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
base.ResumeLayout(false);
base.PerformLayout();
}
// Token: 0x04000065 RID: 101
private global::System.ComponentModel.IContainer components = null;
// Token: 0x04000066 RID: 102
private global::System.Windows.Forms.TextBox tb_log;
// Token: 0x04000067 RID: 103
private global::System.Windows.Forms.DataGridView dataGridView1;
// Token: 0x04000068 RID: 104
private global::System.Windows.Forms.StatusStrip statusStrip1;
// Token: 0x04000069 RID: 105
private global::System.Windows.Forms.ToolStripStatusLabel lbl_consecutiveFails;
}
}