Free cookie consent management tool by TermsFeed Policy Generator

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

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

Hive Client Console Forms w/o services (#397)

File size: 4.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.lbMessage = new System.Windows.Forms.ListBox();
27      this.lbDateLabel = new System.Windows.Forms.Label();
28      this.lbTimeLabel = new System.Windows.Forms.Label();
29      this.lbDate = new System.Windows.Forms.Label();
30      this.lbTime = new System.Windows.Forms.Label();
31      this.lbId = new System.Windows.Forms.Label();
32      this.lbIdLabel = new System.Windows.Forms.Label();
33      this.SuspendLayout();
34      //
35      // lbMessage
36      //
37      this.lbMessage.BackColor = System.Drawing.SystemColors.InactiveBorder;
38      this.lbMessage.FormattingEnabled = true;
39      this.lbMessage.Location = new System.Drawing.Point(12, 97);
40      this.lbMessage.MultiColumn = true;
41      this.lbMessage.Name = "lbMessage";
42      this.lbMessage.Size = new System.Drawing.Size(254, 160);
43      this.lbMessage.TabIndex = 0;
44      //
45      // lbDateLabel
46      //
47      this.lbDateLabel.AutoSize = true;
48      this.lbDateLabel.Location = new System.Drawing.Point(13, 13);
49      this.lbDateLabel.Name = "lbDateLabel";
50      this.lbDateLabel.Size = new System.Drawing.Size(33, 13);
51      this.lbDateLabel.TabIndex = 1;
52      this.lbDateLabel.Text = "Date:";
53      //
54      // lbTimeLabel
55      //
56      this.lbTimeLabel.AutoSize = true;
57      this.lbTimeLabel.Location = new System.Drawing.Point(13, 37);
58      this.lbTimeLabel.Name = "lbTimeLabel";
59      this.lbTimeLabel.Size = new System.Drawing.Size(33, 13);
60      this.lbTimeLabel.TabIndex = 2;
61      this.lbTimeLabel.Text = "Time:";
62      //
63      // lbDate
64      //
65      this.lbDate.AutoSize = true;
66      this.lbDate.Location = new System.Drawing.Point(52, 13);
67      this.lbDate.Name = "lbDate";
68      this.lbDate.Size = new System.Drawing.Size(33, 13);
69      this.lbDate.TabIndex = 3;
70      this.lbDate.Text = "Date:";
71      //
72      // lbTime
73      //
74      this.lbTime.AutoSize = true;
75      this.lbTime.Location = new System.Drawing.Point(52, 37);
76      this.lbTime.Name = "lbTime";
77      this.lbTime.Size = new System.Drawing.Size(33, 13);
78      this.lbTime.TabIndex = 4;
79      this.lbTime.Text = "Time:";
80      //
81      // lbId
82      //
83      this.lbId.AutoSize = true;
84      this.lbId.Location = new System.Drawing.Point(52, 60);
85      this.lbId.Name = "lbId";
86      this.lbId.Size = new System.Drawing.Size(19, 13);
87      this.lbId.TabIndex = 6;
88      this.lbId.Text = "Id:";
89      //
90      // lbIdLabel
91      //
92      this.lbIdLabel.AutoSize = true;
93      this.lbIdLabel.Location = new System.Drawing.Point(13, 60);
94      this.lbIdLabel.Name = "lbIdLabel";
95      this.lbIdLabel.Size = new System.Drawing.Size(19, 13);
96      this.lbIdLabel.TabIndex = 5;
97      this.lbIdLabel.Text = "Id:";
98      //
99      // EventLogEntryForm
100      //
101      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
102      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
103      this.ClientSize = new System.Drawing.Size(278, 269);
104      this.Controls.Add(this.lbId);
105      this.Controls.Add(this.lbIdLabel);
106      this.Controls.Add(this.lbTime);
107      this.Controls.Add(this.lbDate);
108      this.Controls.Add(this.lbTimeLabel);
109      this.Controls.Add(this.lbDateLabel);
110      this.Controls.Add(this.lbMessage);
111      this.Name = "EventLogEntryForm";
112      this.Text = "Eventlog Entry Details";
113      this.ResumeLayout(false);
114      this.PerformLayout();
115
116    }
117
118    #endregion
119
120    private System.Windows.Forms.ListBox lbMessage;
121    private System.Windows.Forms.Label lbDateLabel;
122    private System.Windows.Forms.Label lbTimeLabel;
123    private System.Windows.Forms.Label lbDate;
124    private System.Windows.Forms.Label lbTime;
125    private System.Windows.Forms.Label lbId;
126    private System.Windows.Forms.Label lbIdLabel;
127  }
128}
Note: See TracBrowser for help on using the repository browser.