Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server/3.2/MainForm.Designer.cs @ 2065

Last change on this file since 2065 was 2065, checked in by mbecirov, 15 years ago

#586: Added authorization components.

File size: 5.7 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.btnClose = new System.Windows.Forms.Button();
40          this.ctxNotifyMenu.SuspendLayout();
41          this.SuspendLayout();
42          //
43          // label1
44          //
45          this.label1.AutoSize = true;
46          this.label1.Location = new System.Drawing.Point(12, 9);
47          this.label1.Name = "label1";
48          this.label1.Size = new System.Drawing.Size(97, 13);
49          this.label1.TabIndex = 0;
50          this.label1.Text = "Available Services:";
51          //
52          // rtfServices
53          //
54          this.rtfServices.Location = new System.Drawing.Point(12, 25);
55          this.rtfServices.Name = "rtfServices";
56          this.rtfServices.ReadOnly = true;
57          this.rtfServices.Size = new System.Drawing.Size(280, 121);
58          this.rtfServices.TabIndex = 1;
59          this.rtfServices.Text = "";
60          //
61          // ni
62          //
63          this.ni.ContextMenuStrip = this.ctxNotifyMenu;
64          this.ni.Text = "notifyIcon1";
65          this.ni.Visible = true;
66          //
67          // ctxNotifyMenu
68          //
69          this.ctxNotifyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
70            this.tsShowInfo,
71            this.toolStripSeparator1,
72            this.tsExit});
73          this.ctxNotifyMenu.Name = "ctxNotifyMenu";
74          this.ctxNotifyMenu.Size = new System.Drawing.Size(106, 54);
75          //
76          // tsShowInfo
77          //
78          this.tsShowInfo.Name = "tsShowInfo";
79          this.tsShowInfo.Size = new System.Drawing.Size(105, 22);
80          this.tsShowInfo.Text = "&Info";
81          this.tsShowInfo.Click += new System.EventHandler(this.ShowInfo);
82          //
83          // toolStripSeparator1
84          //
85          this.toolStripSeparator1.Name = "toolStripSeparator1";
86          this.toolStripSeparator1.Size = new System.Drawing.Size(102, 6);
87          //
88          // tsExit
89          //
90          this.tsExit.Name = "tsExit";
91          this.tsExit.Size = new System.Drawing.Size(105, 22);
92          this.tsExit.Text = "E&xit";
93          this.tsExit.Click += new System.EventHandler(this.CloseApp);
94          //
95          // btnClose
96          //
97          this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
98          this.btnClose.Location = new System.Drawing.Point(279, 1);
99          this.btnClose.Name = "btnClose";
100          this.btnClose.Size = new System.Drawing.Size(22, 21);
101          this.btnClose.TabIndex = 2;
102          this.btnClose.Text = "X";
103          this.btnClose.UseVisualStyleBackColor = true;
104          this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
105          //
106          // MainForm
107          //
108          this.AcceptButton = this.btnClose;
109          this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
110          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
111          this.CancelButton = this.btnClose;
112          this.ClientSize = new System.Drawing.Size(304, 166);
113          this.ControlBox = false;
114          this.Controls.Add(this.btnClose);
115          this.Controls.Add(this.rtfServices);
116          this.Controls.Add(this.label1);
117          this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
118          this.Name = "MainForm";
119          this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
120          this.Text = "Hive Server";
121          this.TopMost = true;
122          this.ctxNotifyMenu.ResumeLayout(false);
123          this.ResumeLayout(false);
124          this.PerformLayout();
125
126        }
127
128        #endregion
129
130        private System.Windows.Forms.Label label1;
131        private System.Windows.Forms.RichTextBox rtfServices;
132        private System.Windows.Forms.NotifyIcon ni;
133        private System.Windows.Forms.ContextMenuStrip ctxNotifyMenu;
134        private System.Windows.Forms.ToolStripMenuItem tsShowInfo;
135        private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
136        private System.Windows.Forms.ToolStripMenuItem tsExit;
137        private System.Windows.Forms.Button btnClose;
138    }
139}
Note: See TracBrowser for help on using the repository browser.