119 lines
5.3 KiB
C#
119 lines
5.3 KiB
C#
namespace OpenSaveCloudClient
|
|
{
|
|
partial class LogsForm
|
|
{
|
|
/// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LogsForm));
|
|
this.listView1 = new System.Windows.Forms.ListView();
|
|
this.Message = new System.Windows.Forms.ColumnHeader();
|
|
this.Severity = new System.Windows.Forms.ColumnHeader();
|
|
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
|
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
|
this.toolStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// listView1
|
|
//
|
|
this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.Message,
|
|
this.Severity});
|
|
this.listView1.GridLines = true;
|
|
this.listView1.Location = new System.Drawing.Point(0, 27);
|
|
this.listView1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.listView1.MultiSelect = false;
|
|
this.listView1.Name = "listView1";
|
|
this.listView1.ShowGroups = false;
|
|
this.listView1.Size = new System.Drawing.Size(747, 344);
|
|
this.listView1.TabIndex = 0;
|
|
this.listView1.UseCompatibleStateImageBehavior = false;
|
|
this.listView1.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// Message
|
|
//
|
|
this.Message.Text = "Message";
|
|
this.Message.Width = 600;
|
|
//
|
|
// Severity
|
|
//
|
|
this.Severity.Text = "Severity";
|
|
this.Severity.Width = 100;
|
|
//
|
|
// toolStrip1
|
|
//
|
|
this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
|
|
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.toolStripButton1});
|
|
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.toolStrip1.Name = "toolStrip1";
|
|
this.toolStrip1.Size = new System.Drawing.Size(746, 25);
|
|
this.toolStrip1.TabIndex = 1;
|
|
this.toolStrip1.Text = "toolStrip1";
|
|
//
|
|
// toolStripButton1
|
|
//
|
|
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
|
|
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.toolStripButton1.Name = "toolStripButton1";
|
|
this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
|
|
this.toolStripButton1.Text = "toolStripButton1";
|
|
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
|
|
//
|
|
// LogsForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.ClientSize = new System.Drawing.Size(746, 369);
|
|
this.Controls.Add(this.toolStrip1);
|
|
this.Controls.Add(this.listView1);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.MinimumSize = new System.Drawing.Size(507, 205);
|
|
this.Name = "LogsForm";
|
|
this.Text = "Logs";
|
|
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.LogForm_FormClosed);
|
|
this.Load += new System.EventHandler(this.LogsForm_Load);
|
|
this.toolStrip1.ResumeLayout(false);
|
|
this.toolStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ListView listView1;
|
|
private ColumnHeader Message;
|
|
private ColumnHeader Severity;
|
|
private ToolStrip toolStrip1;
|
|
private ToolStripButton toolStripButton1;
|
|
}
|
|
} |