Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Console/EventLogEntryForm.Designer.cs @ 1163

Last change on this file since 1163 was 1002, checked in by whackl, 15 years ago

added new features (#397)

File size: 3.6 KB
Line 
1namespace 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();
30      this.txtMessage = new System.Windows.Forms.TextBox();
31      this.SuspendLayout();
32      //
33      // lbDateLabel
34      //
35      this.lbDateLabel.AutoSize = true;
36      this.lbDateLabel.Location = new System.Drawing.Point(13, 27);
37      this.lbDateLabel.Name = "lbDateLabel";
38      this.lbDateLabel.Size = new System.Drawing.Size(80, 13);
39      this.lbDateLabel.TabIndex = 1;
40      this.lbDateLabel.Text = "Date and Time:";
41      //
42      // lbDate
43      //
44      this.lbDate.AutoSize = true;
45      this.lbDate.Location = new System.Drawing.Point(89, 27);
46      this.lbDate.Name = "lbDate";
47      this.lbDate.Size = new System.Drawing.Size(23, 13);
48      this.lbDate.TabIndex = 3;
49      this.lbDate.Text = "null";
50      //
51      // lbId
52      //
53      this.lbId.AutoSize = true;
54      this.lbId.Location = new System.Drawing.Point(27, 9);
55      this.lbId.Name = "lbId";
56      this.lbId.Size = new System.Drawing.Size(23, 13);
57      this.lbId.TabIndex = 6;
58      this.lbId.Text = "null";
59      //
60      // lbIdLabel
61      //
62      this.lbIdLabel.AutoSize = true;
63      this.lbIdLabel.Location = new System.Drawing.Point(13, 9);
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      //
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      //
79      // EventLogEntryForm
80      //
81      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
82      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
83      this.ClientSize = new System.Drawing.Size(278, 246);
84      this.Controls.Add(this.txtMessage);
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";
90      this.Text = "Detail";
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;
102    private System.Windows.Forms.TextBox txtMessage;
103  }
104}
Note: See TracBrowser for help on using the repository browser.