Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.2/sources/HeuristicLab.Hive.Server/3.2/MainForm.Designer.cs @ 4539

Last change on this file since 4539 was 4042, checked in by kgrading, 14 years ago

#828 added various improvements to the plugin cache manager, the execution engine, the transaction handling on the serverside and the server console

File size: 4.9 KB
Line 
1namespace HeuristicLab.Hive.Server
2{
3    partial class MainForm
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>
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>
29        private void InitializeComponent()
30        {
31          this.components = new System.ComponentModel.Container();
32          this.label1 = new System.Windows.Forms.Label();
33          this.rtfServices = new System.Windows.Forms.RichTextBox();
34          this.ni = new System.Windows.Forms.NotifyIcon(this.components);
35          this.ctxNotifyMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
36          this.tsShowInfo = new System.Windows.Forms.ToolStripMenuItem();
37          this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
38          this.tsExit = new System.Windows.Forms.ToolStripMenuItem();
39          this.ctxNotifyMenu.SuspendLayout();
40          this.SuspendLayout();
41          //
42          // label1
43          //
44          this.label1.AutoSize = true;
45          this.label1.Location = new System.Drawing.Point(12, 9);
46          this.label1.Name = "label1";
47          this.label1.Size = new System.Drawing.Size(97, 13);
48          this.label1.TabIndex = 0;
49          this.label1.Text = "Available Services:";
50          //
51          // rtfServices
52          //
53          this.rtfServices.Location = new System.Drawing.Point(12, 25);
54          this.rtfServices.Name = "rtfServices";
55          this.rtfServices.ReadOnly = true;
56          this.rtfServices.Size = new System.Drawing.Size(280, 121);
57          this.rtfServices.TabIndex = 1;
58          this.rtfServices.Text = "";
59          //
60          // ni
61          //
62          this.ni.ContextMenuStrip = this.ctxNotifyMenu;
63          this.ni.Text = "notifyIcon1";
64          this.ni.Visible = true;
65          //
66          // ctxNotifyMenu
67          //
68          this.ctxNotifyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
69            this.tsShowInfo,
70            this.toolStripSeparator1,
71            this.tsExit});
72          this.ctxNotifyMenu.Name = "ctxNotifyMenu";
73          this.ctxNotifyMenu.Size = new System.Drawing.Size(96, 54);
74          //
75          // tsShowInfo
76          //
77          this.tsShowInfo.Name = "tsShowInfo";
78          this.tsShowInfo.Size = new System.Drawing.Size(95, 22);
79          this.tsShowInfo.Text = "&Info";
80          this.tsShowInfo.Click += new System.EventHandler(this.ShowInfo);
81          //
82          // toolStripSeparator1
83          //
84          this.toolStripSeparator1.Name = "toolStripSeparator1";
85          this.toolStripSeparator1.Size = new System.Drawing.Size(92, 6);
86          //
87          // tsExit
88          //
89          this.tsExit.Name = "tsExit";
90          this.tsExit.Size = new System.Drawing.Size(95, 22);
91          this.tsExit.Text = "E&xit";
92          this.tsExit.Click += new System.EventHandler(this.CloseApp);
93          //
94          // MainForm
95          //
96          this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
97          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
98          this.ClientSize = new System.Drawing.Size(304, 166);
99          this.Controls.Add(this.rtfServices);
100          this.Controls.Add(this.label1);
101          this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
102          this.Name = "MainForm";
103          this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
104          this.Text = "Hive Server";
105          this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
106          this.ctxNotifyMenu.ResumeLayout(false);
107          this.ResumeLayout(false);
108          this.PerformLayout();
109
110        }
111
112        #endregion
113
114        private System.Windows.Forms.Label label1;
115        private System.Windows.Forms.RichTextBox rtfServices;
116        private System.Windows.Forms.NotifyIcon ni;
117        private System.Windows.Forms.ContextMenuStrip ctxNotifyMenu;
118        private System.Windows.Forms.ToolStripMenuItem tsShowInfo;
119        private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
120        private System.Windows.Forms.ToolStripMenuItem tsExit;
121    }
122}
Note: See TracBrowser for help on using the repository browser.