namespace Cosmos.Kernel.LogTail.Handlers { partial class MessageLogHandler { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MessageLogHandler)); this.listView = new System.Windows.Forms.ListView(); this.sourceColumnHeader = new System.Windows.Forms.ColumnHeader(); this.messageColumnHeader = new System.Windows.Forms.ColumnHeader(); this.imageList = new System.Windows.Forms.ImageList(this.components); this.SuspendLayout(); // // listView // this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.sourceColumnHeader, this.messageColumnHeader}); this.listView.Dock = System.Windows.Forms.DockStyle.Fill; this.listView.GridLines = true; this.listView.LargeImageList = this.imageList; this.listView.Location = new System.Drawing.Point(0, 0); this.listView.Name = "listView"; this.listView.Size = new System.Drawing.Size(150, 150); this.listView.SmallImageList = this.imageList; this.listView.StateImageList = this.imageList; this.listView.TabIndex = 0; this.listView.UseCompatibleStateImageBehavior = false; this.listView.View = System.Windows.Forms.View.Details; // // sourceColumnHeader // this.sourceColumnHeader.Text = "Source"; this.sourceColumnHeader.Width = 120; // // messageColumnHeader // this.messageColumnHeader.Text = "Message"; this.messageColumnHeader.Width = 500; // // imageList // this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream"))); this.imageList.TransparentColor = System.Drawing.Color.Transparent; this.imageList.Images.SetKeyName(0, "error"); this.imageList.Images.SetKeyName(1, "message"); this.imageList.Images.SetKeyName(2, "warning"); // // MessageLogHandler // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.listView); this.Name = "MessageLogHandler"; this.ResumeLayout(false); } #endregion private System.Windows.Forms.ListView listView; private System.Windows.Forms.ImageList imageList; private System.Windows.Forms.ColumnHeader sourceColumnHeader; private System.Windows.Forms.ColumnHeader messageColumnHeader; } }