Free cookie consent management tool by TermsFeed Policy Generator

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

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

#586: Changed some permissions.

File size: 5.8 KB
RevLine 
[713]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        {
[2065]31          this.components = new System.ComponentModel.Container();
[741]32          this.label1 = new System.Windows.Forms.Label();
[2065]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();
[713]41          this.SuspendLayout();
42          //
[741]43          // label1
44          //
45          this.label1.AutoSize = true;
[2065]46          this.label1.Location = new System.Drawing.Point(12, 9);
[741]47          this.label1.Name = "label1";
[2065]48          this.label1.Size = new System.Drawing.Size(97, 13);
[741]49          this.label1.TabIndex = 0;
[2065]50          this.label1.Text = "Available Services:";
[741]51          //
[2065]52          // rtfServices
[741]53          //
[2065]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 = "";
[741]60          //
[2065]61          // ni
[800]62          //
[2065]63          this.ni.ContextMenuStrip = this.ctxNotifyMenu;
64          this.ni.Text = "notifyIcon1";
65          this.ni.Visible = true;
[800]66          //
[2065]67          // ctxNotifyMenu
[800]68          //
[2065]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);
[800]75          //
[2065]76          // tsShowInfo
[1120]77          //
[2065]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);
[1120]82          //
[2065]83          // toolStripSeparator1
[1120]84          //
[2065]85          this.toolStripSeparator1.Name = "toolStripSeparator1";
86          this.toolStripSeparator1.Size = new System.Drawing.Size(102, 6);
[1120]87          //
[2065]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          //
[2067]97          this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
[2065]98          this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
99          this.btnClose.Location = new System.Drawing.Point(279, 1);
100          this.btnClose.Name = "btnClose";
101          this.btnClose.Size = new System.Drawing.Size(22, 21);
102          this.btnClose.TabIndex = 2;
103          this.btnClose.Text = "X";
104          this.btnClose.UseVisualStyleBackColor = true;
105          this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
106          //
[713]107          // MainForm
108          //
[2065]109          this.AcceptButton = this.btnClose;
[713]110          this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
111          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[2065]112          this.CancelButton = this.btnClose;
113          this.ClientSize = new System.Drawing.Size(304, 166);
114          this.ControlBox = false;
115          this.Controls.Add(this.btnClose);
116          this.Controls.Add(this.rtfServices);
[741]117          this.Controls.Add(this.label1);
[2065]118          this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
[713]119          this.Name = "MainForm";
[2067]120          this.ShowInTaskbar = false;
[2065]121          this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
[1165]122          this.Text = "Hive Server";
[2065]123          this.TopMost = true;
124          this.ctxNotifyMenu.ResumeLayout(false);
[713]125          this.ResumeLayout(false);
[741]126          this.PerformLayout();
[713]127
128        }
129
130        #endregion
[741]131
132        private System.Windows.Forms.Label label1;
[2065]133        private System.Windows.Forms.RichTextBox rtfServices;
134        private System.Windows.Forms.NotifyIcon ni;
135        private System.Windows.Forms.ContextMenuStrip ctxNotifyMenu;
136        private System.Windows.Forms.ToolStripMenuItem tsShowInfo;
137        private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
138        private System.Windows.Forms.ToolStripMenuItem tsExit;
139        private System.Windows.Forms.Button btnClose;
[713]140    }
141}
Note: See TracBrowser for help on using the repository browser.