[906] | 1 | namespace HeuristicLab.Hive.Client.Console {
|
---|
| 2 | partial class EventLogEntryForm {
|
---|
| 3 | /// <summary>
|
---|
| 4 | /// Required designer variable.
|
---|
| 5 | /// </summary>
|
---|
| 6 | private System.ComponentModel.IContainer components = null;
|
---|
| 7 |
|
---|
| 8 | /// <summary>
|
---|
| 9 | /// Clean up any resources being used.
|
---|
| 10 | /// </summary>
|
---|
| 11 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 12 | protected override void Dispose(bool disposing) {
|
---|
| 13 | if (disposing && (components != null)) {
|
---|
| 14 | components.Dispose();
|
---|
| 15 | }
|
---|
| 16 | base.Dispose(disposing);
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | #region Windows Form Designer generated code
|
---|
| 20 |
|
---|
| 21 | /// <summary>
|
---|
| 22 | /// Required method for Designer support - do not modify
|
---|
| 23 | /// the contents of this method with the code editor.
|
---|
| 24 | /// </summary>
|
---|
| 25 | private void InitializeComponent() {
|
---|
| 26 | this.lbDateLabel = new System.Windows.Forms.Label();
|
---|
| 27 | this.lbDate = new System.Windows.Forms.Label();
|
---|
| 28 | this.lbId = new System.Windows.Forms.Label();
|
---|
| 29 | this.lbIdLabel = new System.Windows.Forms.Label();
|
---|
[1002] | 30 | this.txtMessage = new System.Windows.Forms.TextBox();
|
---|
[906] | 31 | this.SuspendLayout();
|
---|
| 32 | //
|
---|
| 33 | // lbDateLabel
|
---|
| 34 | //
|
---|
| 35 | this.lbDateLabel.AutoSize = true;
|
---|
[1002] | 36 | this.lbDateLabel.Location = new System.Drawing.Point(13, 27);
|
---|
[906] | 37 | this.lbDateLabel.Name = "lbDateLabel";
|
---|
[1002] | 38 | this.lbDateLabel.Size = new System.Drawing.Size(80, 13);
|
---|
[906] | 39 | this.lbDateLabel.TabIndex = 1;
|
---|
[1002] | 40 | this.lbDateLabel.Text = "Date and Time:";
|
---|
[906] | 41 | //
|
---|
| 42 | // lbDate
|
---|
| 43 | //
|
---|
| 44 | this.lbDate.AutoSize = true;
|
---|
[1002] | 45 | this.lbDate.Location = new System.Drawing.Point(89, 27);
|
---|
[906] | 46 | this.lbDate.Name = "lbDate";
|
---|
[1002] | 47 | this.lbDate.Size = new System.Drawing.Size(23, 13);
|
---|
[906] | 48 | this.lbDate.TabIndex = 3;
|
---|
[1002] | 49 | this.lbDate.Text = "null";
|
---|
[906] | 50 | //
|
---|
| 51 | // lbId
|
---|
| 52 | //
|
---|
| 53 | this.lbId.AutoSize = true;
|
---|
[1002] | 54 | this.lbId.Location = new System.Drawing.Point(27, 9);
|
---|
[906] | 55 | this.lbId.Name = "lbId";
|
---|
[1002] | 56 | this.lbId.Size = new System.Drawing.Size(23, 13);
|
---|
[906] | 57 | this.lbId.TabIndex = 6;
|
---|
[1002] | 58 | this.lbId.Text = "null";
|
---|
[906] | 59 | //
|
---|
| 60 | // lbIdLabel
|
---|
| 61 | //
|
---|
| 62 | this.lbIdLabel.AutoSize = true;
|
---|
[1002] | 63 | this.lbIdLabel.Location = new System.Drawing.Point(13, 9);
|
---|
[906] | 64 | this.lbIdLabel.Name = "lbIdLabel";
|
---|
| 65 | this.lbIdLabel.Size = new System.Drawing.Size(19, 13);
|
---|
| 66 | this.lbIdLabel.TabIndex = 5;
|
---|
| 67 | this.lbIdLabel.Text = "Id:";
|
---|
| 68 | //
|
---|
[1002] | 69 | // txtMessage
|
---|
| 70 | //
|
---|
| 71 | this.txtMessage.BackColor = System.Drawing.SystemColors.InactiveBorder;
|
---|
| 72 | this.txtMessage.Location = new System.Drawing.Point(16, 55);
|
---|
| 73 | this.txtMessage.Multiline = true;
|
---|
| 74 | this.txtMessage.Name = "txtMessage";
|
---|
| 75 | this.txtMessage.ReadOnly = true;
|
---|
| 76 | this.txtMessage.Size = new System.Drawing.Size(250, 179);
|
---|
| 77 | this.txtMessage.TabIndex = 7;
|
---|
| 78 | //
|
---|
[906] | 79 | // EventLogEntryForm
|
---|
| 80 | //
|
---|
| 81 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 82 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[1002] | 83 | this.ClientSize = new System.Drawing.Size(278, 246);
|
---|
| 84 | this.Controls.Add(this.txtMessage);
|
---|
[906] | 85 | this.Controls.Add(this.lbId);
|
---|
| 86 | this.Controls.Add(this.lbIdLabel);
|
---|
| 87 | this.Controls.Add(this.lbDate);
|
---|
| 88 | this.Controls.Add(this.lbDateLabel);
|
---|
| 89 | this.Name = "EventLogEntryForm";
|
---|
[1002] | 90 | this.Text = "Detail";
|
---|
[906] | 91 | this.ResumeLayout(false);
|
---|
| 92 | this.PerformLayout();
|
---|
| 93 |
|
---|
| 94 | }
|
---|
| 95 |
|
---|
| 96 | #endregion
|
---|
| 97 |
|
---|
| 98 | private System.Windows.Forms.Label lbDateLabel;
|
---|
| 99 | private System.Windows.Forms.Label lbDate;
|
---|
| 100 | private System.Windows.Forms.Label lbId;
|
---|
| 101 | private System.Windows.Forms.Label lbIdLabel;
|
---|
[1002] | 102 | private System.Windows.Forms.TextBox txtMessage;
|
---|
[906] | 103 | }
|
---|
| 104 | } |
---|