1 namespace ObjectViewer 2 { 3 partial class formMessages 4 { 5 /// <summary> 6 /// Required designer variable. 7 /// </summary> 8 private System.ComponentModel.IContainer components = null; 9 10 /// <summary> 11 /// Clean up any resources being used. 12 /// </summary> 13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> Dispose(bool disposing)14 protected override void Dispose(bool disposing) 15 { 16 if (disposing && (components != null)) 17 { 18 components.Dispose(); 19 } 20 base.Dispose(disposing); 21 } 22 23 #region Windows Form Designer generated code 24 25 /// <summary> 26 /// Required method for Designer support - do not modify 27 /// the contents of this method with the code editor. 28 /// </summary> InitializeComponent()29 private void InitializeComponent() 30 { 31 this.buttonClose = new System.Windows.Forms.Button(); 32 this.listviewMessages = new System.Windows.Forms.ListView(); 33 this.columnheaderType = new System.Windows.Forms.ColumnHeader(); 34 this.columnheaderDescription = new System.Windows.Forms.ColumnHeader(); 35 this.buttonSave = new System.Windows.Forms.Button(); 36 this.buttonClipboard = new System.Windows.Forms.Button(); 37 this.SuspendLayout(); 38 // 39 // buttonClose 40 // 41 this.buttonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 42 this.buttonClose.DialogResult = System.Windows.Forms.DialogResult.OK; 43 this.buttonClose.Location = new System.Drawing.Point(488, 224); 44 this.buttonClose.Name = "buttonClose"; 45 this.buttonClose.Size = new System.Drawing.Size(96, 24); 46 this.buttonClose.TabIndex = 2; 47 this.buttonClose.Text = "Close"; 48 this.buttonClose.UseVisualStyleBackColor = true; 49 this.buttonClose.Click += new System.EventHandler(this.buttonCancel_Click); 50 // 51 // listviewMessages 52 // 53 this.listviewMessages.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 54 | System.Windows.Forms.AnchorStyles.Left) 55 | System.Windows.Forms.AnchorStyles.Right))); 56 this.listviewMessages.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { 57 this.columnheaderType, 58 this.columnheaderDescription}); 59 this.listviewMessages.FullRowSelect = true; 60 this.listviewMessages.GridLines = true; 61 this.listviewMessages.Location = new System.Drawing.Point(8, 8); 62 this.listviewMessages.MultiSelect = false; 63 this.listviewMessages.Name = "listviewMessages"; 64 this.listviewMessages.Size = new System.Drawing.Size(576, 208); 65 this.listviewMessages.TabIndex = 0; 66 this.listviewMessages.UseCompatibleStateImageBehavior = false; 67 this.listviewMessages.View = System.Windows.Forms.View.Details; 68 // 69 // columnheaderType 70 // 71 this.columnheaderType.Text = "Type"; 72 // 73 // columnheaderDescription 74 // 75 this.columnheaderDescription.Text = "Description"; 76 // 77 // buttonSave 78 // 79 this.buttonSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 80 this.buttonSave.BackColor = System.Drawing.SystemColors.ButtonFace; 81 this.buttonSave.Location = new System.Drawing.Point(8, 224); 82 this.buttonSave.Name = "buttonSave"; 83 this.buttonSave.Size = new System.Drawing.Size(96, 24); 84 this.buttonSave.TabIndex = 1; 85 this.buttonSave.Text = "Save Report..."; 86 this.buttonSave.UseVisualStyleBackColor = true; 87 this.buttonSave.Click += new System.EventHandler(this.ButtonSaveClick); 88 // 89 // buttonClipboard 90 // 91 this.buttonClipboard.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 92 this.buttonClipboard.Location = new System.Drawing.Point(110, 224); 93 this.buttonClipboard.Name = "buttonClipboard"; 94 this.buttonClipboard.Size = new System.Drawing.Size(112, 24); 95 this.buttonClipboard.TabIndex = 2; 96 this.buttonClipboard.Text = "Copy To Clipboard"; 97 this.buttonClipboard.UseVisualStyleBackColor = true; 98 this.buttonClipboard.Click += new System.EventHandler(this.buttonClipboardClick); 99 // 100 // formMessages 101 // 102 this.AcceptButton = this.buttonClose; 103 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 104 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 105 this.CancelButton = this.buttonClose; 106 this.ClientSize = new System.Drawing.Size(592, 256); 107 this.Controls.Add(this.buttonSave); 108 this.Controls.Add(this.buttonClipboard); 109 this.Controls.Add(this.listviewMessages); 110 this.Controls.Add(this.buttonClose); 111 this.MinimizeBox = false; 112 this.Name = "formMessages"; 113 this.ShowIcon = false; 114 this.ShowInTaskbar = false; 115 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 116 this.Text = "Messages"; 117 this.Shown += new System.EventHandler(this.formMessages_Shown); 118 this.ResumeLayout(false); 119 } 120 private System.Windows.Forms.Button buttonSave; 121 private System.Windows.Forms.Button buttonClipboard; 122 123 #endregion 124 125 private System.Windows.Forms.Button buttonClose; 126 private System.Windows.Forms.ListView listviewMessages; 127 private System.Windows.Forms.ColumnHeader columnheaderType; 128 private System.Windows.Forms.ColumnHeader columnheaderDescription; 129 } 130 }