| 1 | /* |
|---|
| 2 | * $Id$ |
|---|
| 3 | * Copyright 2008-2012 The Eraser Project |
|---|
| 4 | * Original Author: Joel Low <lowjoel@users.sourceforge.net> |
|---|
| 5 | * Modified By: |
|---|
| 6 | * |
|---|
| 7 | * This file is part of Eraser. |
|---|
| 8 | * |
|---|
| 9 | * Eraser is free software: you can redistribute it and/or modify it under the |
|---|
| 10 | * terms of the GNU General Public License as published by the Free Software |
|---|
| 11 | * Foundation, either version 3 of the License, or (at your option) any later |
|---|
| 12 | * version. |
|---|
| 13 | * |
|---|
| 14 | * Eraser is distributed in the hope that it will be useful, but WITHOUT ANY |
|---|
| 15 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
|---|
| 16 | * A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
|---|
| 17 | * |
|---|
| 18 | * A copy of the GNU General Public License can be found at |
|---|
| 19 | * <http://www.gnu.org/licenses/>. |
|---|
| 20 | */ |
|---|
| 21 | |
|---|
| 22 | namespace Eraser.BlackBox |
|---|
| 23 | { |
|---|
| 24 | partial class BlackBoxMainForm |
|---|
| 25 | { |
|---|
| 26 | /// <summary> |
|---|
| 27 | /// Required designer variable. |
|---|
| 28 | /// </summary> |
|---|
| 29 | private System.ComponentModel.IContainer components = null; |
|---|
| 30 | |
|---|
| 31 | /// <summary> |
|---|
| 32 | /// Clean up any resources being used. |
|---|
| 33 | /// </summary> |
|---|
| 34 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
|---|
| 35 | protected override void Dispose(bool disposing) |
|---|
| 36 | { |
|---|
| 37 | if (disposing && (components != null)) |
|---|
| 38 | { |
|---|
| 39 | components.Dispose(); |
|---|
| 40 | } |
|---|
| 41 | base.Dispose(disposing); |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | #region Windows Form Designer generated code |
|---|
| 45 | |
|---|
| 46 | /// <summary> |
|---|
| 47 | /// Required method for Designer support - do not modify |
|---|
| 48 | /// the contents of this method with the code editor. |
|---|
| 49 | /// </summary> |
|---|
| 50 | private void InitializeComponent() |
|---|
| 51 | { |
|---|
| 52 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BlackBoxMainForm)); |
|---|
| 53 | this.MainLbl = new System.Windows.Forms.Label(); |
|---|
| 54 | this.SubmitBtn = new System.Windows.Forms.Button(); |
|---|
| 55 | this.PostponeBtn = new System.Windows.Forms.Button(); |
|---|
| 56 | this.BlackBoxPic = new System.Windows.Forms.PictureBox(); |
|---|
| 57 | this.ReportsLv = new System.Windows.Forms.ListView(); |
|---|
| 58 | this.ReportsLvTimestampColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); |
|---|
| 59 | this.ReportsLvErrorColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); |
|---|
| 60 | this.DataCollectionPolicyLbl = new System.Windows.Forms.LinkLabel(); |
|---|
| 61 | ((System.ComponentModel.ISupportInitialize)(this.BlackBoxPic)).BeginInit(); |
|---|
| 62 | this.SuspendLayout(); |
|---|
| 63 | // |
|---|
| 64 | // MainLbl |
|---|
| 65 | // |
|---|
| 66 | resources.ApplyResources(this.MainLbl, "MainLbl"); |
|---|
| 67 | this.MainLbl.Name = "MainLbl"; |
|---|
| 68 | // |
|---|
| 69 | // SubmitBtn |
|---|
| 70 | // |
|---|
| 71 | resources.ApplyResources(this.SubmitBtn, "SubmitBtn"); |
|---|
| 72 | this.SubmitBtn.Name = "SubmitBtn"; |
|---|
| 73 | this.SubmitBtn.UseVisualStyleBackColor = true; |
|---|
| 74 | this.SubmitBtn.Click += new System.EventHandler(this.SubmitBtn_Click); |
|---|
| 75 | // |
|---|
| 76 | // PostponeBtn |
|---|
| 77 | // |
|---|
| 78 | resources.ApplyResources(this.PostponeBtn, "PostponeBtn"); |
|---|
| 79 | this.PostponeBtn.Name = "PostponeBtn"; |
|---|
| 80 | this.PostponeBtn.UseVisualStyleBackColor = true; |
|---|
| 81 | this.PostponeBtn.Click += new System.EventHandler(this.PostponeBtn_Click); |
|---|
| 82 | // |
|---|
| 83 | // BlackBoxPic |
|---|
| 84 | // |
|---|
| 85 | this.BlackBoxPic.Image = global::Eraser.BlackBox.Properties.Resources.BlackBox; |
|---|
| 86 | resources.ApplyResources(this.BlackBoxPic, "BlackBoxPic"); |
|---|
| 87 | this.BlackBoxPic.Name = "BlackBoxPic"; |
|---|
| 88 | this.BlackBoxPic.TabStop = false; |
|---|
| 89 | // |
|---|
| 90 | // ReportsLv |
|---|
| 91 | // |
|---|
| 92 | resources.ApplyResources(this.ReportsLv, "ReportsLv"); |
|---|
| 93 | this.ReportsLv.CheckBoxes = true; |
|---|
| 94 | this.ReportsLv.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { |
|---|
| 95 | this.ReportsLvTimestampColumn, |
|---|
| 96 | this.ReportsLvErrorColumn}); |
|---|
| 97 | this.ReportsLv.FullRowSelect = true; |
|---|
| 98 | this.ReportsLv.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; |
|---|
| 99 | this.ReportsLv.Name = "ReportsLv"; |
|---|
| 100 | this.ReportsLv.UseCompatibleStateImageBehavior = false; |
|---|
| 101 | this.ReportsLv.View = System.Windows.Forms.View.Details; |
|---|
| 102 | this.ReportsLv.ItemActivate += new System.EventHandler(this.ReportsLv_ItemActivate); |
|---|
| 103 | // |
|---|
| 104 | // ReportsLvTimestampColumn |
|---|
| 105 | // |
|---|
| 106 | resources.ApplyResources(this.ReportsLvTimestampColumn, "ReportsLvTimestampColumn"); |
|---|
| 107 | // |
|---|
| 108 | // ReportsLvErrorColumn |
|---|
| 109 | // |
|---|
| 110 | resources.ApplyResources(this.ReportsLvErrorColumn, "ReportsLvErrorColumn"); |
|---|
| 111 | // |
|---|
| 112 | // DataCollectionPolicyLbl |
|---|
| 113 | // |
|---|
| 114 | resources.ApplyResources(this.DataCollectionPolicyLbl, "DataCollectionPolicyLbl"); |
|---|
| 115 | this.DataCollectionPolicyLbl.Name = "DataCollectionPolicyLbl"; |
|---|
| 116 | this.DataCollectionPolicyLbl.TabStop = true; |
|---|
| 117 | this.DataCollectionPolicyLbl.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.DataCollectionPolicyLbl_LinkClicked); |
|---|
| 118 | // |
|---|
| 119 | // BlackBoxMainForm |
|---|
| 120 | // |
|---|
| 121 | resources.ApplyResources(this, "$this"); |
|---|
| 122 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; |
|---|
| 123 | this.Controls.Add(this.DataCollectionPolicyLbl); |
|---|
| 124 | this.Controls.Add(this.ReportsLv); |
|---|
| 125 | this.Controls.Add(this.BlackBoxPic); |
|---|
| 126 | this.Controls.Add(this.PostponeBtn); |
|---|
| 127 | this.Controls.Add(this.SubmitBtn); |
|---|
| 128 | this.Controls.Add(this.MainLbl); |
|---|
| 129 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; |
|---|
| 130 | this.MaximizeBox = false; |
|---|
| 131 | this.MinimizeBox = false; |
|---|
| 132 | this.Name = "BlackBoxMainForm"; |
|---|
| 133 | this.ShowInTaskbar = false; |
|---|
| 134 | ((System.ComponentModel.ISupportInitialize)(this.BlackBoxPic)).EndInit(); |
|---|
| 135 | this.ResumeLayout(false); |
|---|
| 136 | this.PerformLayout(); |
|---|
| 137 | |
|---|
| 138 | } |
|---|
| 139 | |
|---|
| 140 | #endregion |
|---|
| 141 | |
|---|
| 142 | private System.Windows.Forms.Label MainLbl; |
|---|
| 143 | private System.Windows.Forms.Button SubmitBtn; |
|---|
| 144 | private System.Windows.Forms.Button PostponeBtn; |
|---|
| 145 | private System.Windows.Forms.PictureBox BlackBoxPic; |
|---|
| 146 | private System.Windows.Forms.ListView ReportsLv; |
|---|
| 147 | private System.Windows.Forms.ColumnHeader ReportsLvTimestampColumn; |
|---|
| 148 | private System.Windows.Forms.ColumnHeader ReportsLvErrorColumn; |
|---|
| 149 | private System.Windows.Forms.LinkLabel DataCollectionPolicyLbl; |
|---|
| 150 | } |
|---|
| 151 | } |
|---|