Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server/3.3/MainForm.Designer.cs @ 4340

Last change on this file since 4340 was 4316, checked in by cneumuel, 14 years ago

made streaming wcf-services work with Transport-Security and net.tcp but with Message-Level Credentials (#1168)

File size: 5.1 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.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
54                      | System.Windows.Forms.AnchorStyles.Left)
55                      | System.Windows.Forms.AnchorStyles.Right)));
56          this.rtfServices.Location = new System.Drawing.Point(12, 25);
57          this.rtfServices.Name = "rtfServices";
58          this.rtfServices.ReadOnly = true;
59          this.rtfServices.Size = new System.Drawing.Size(377, 129);
60          this.rtfServices.TabIndex = 1;
61          this.rtfServices.Text = "";
62          //
63          // ni
64          //
65          this.ni.ContextMenuStrip = this.ctxNotifyMenu;
66          this.ni.Text = "notifyIcon1";
67          this.ni.Visible = true;
68          this.ni.MouseClick += new System.Windows.Forms.MouseEventHandler(this.ni_MouseClick);
69          //
70          // ctxNotifyMenu
71          //
72          this.ctxNotifyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
73            this.tsShowInfo,
74            this.toolStripSeparator1,
75            this.tsExit});
76          this.ctxNotifyMenu.Name = "ctxNotifyMenu";
77          this.ctxNotifyMenu.Size = new System.Drawing.Size(96, 54);
78          //
79          // tsShowInfo
80          //
81          this.tsShowInfo.Name = "tsShowInfo";
82          this.tsShowInfo.Size = new System.Drawing.Size(95, 22);
83          this.tsShowInfo.Text = "&Info";
84          this.tsShowInfo.Click += new System.EventHandler(this.ShowInfo);
85          //
86          // toolStripSeparator1
87          //
88          this.toolStripSeparator1.Name = "toolStripSeparator1";
89          this.toolStripSeparator1.Size = new System.Drawing.Size(92, 6);
90          //
91          // tsExit
92          //
93          this.tsExit.Name = "tsExit";
94          this.tsExit.Size = new System.Drawing.Size(95, 22);
95          this.tsExit.Text = "E&xit";
96          this.tsExit.Click += new System.EventHandler(this.CloseApp);
97          //
98          // MainForm
99          //
100          this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
101          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
102          this.ClientSize = new System.Drawing.Size(401, 166);
103          this.Controls.Add(this.rtfServices);
104          this.Controls.Add(this.label1);
105          this.Name = "MainForm";
106          this.Text = "Hive Server";
107          this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
108          this.ctxNotifyMenu.ResumeLayout(false);
109          this.ResumeLayout(false);
110          this.PerformLayout();
111
112        }
113
114        #endregion
115
116        private System.Windows.Forms.Label label1;
117        private System.Windows.Forms.RichTextBox rtfServices;
118        private System.Windows.Forms.NotifyIcon ni;
119        private System.Windows.Forms.ContextMenuStrip ctxNotifyMenu;
120        private System.Windows.Forms.ToolStripMenuItem tsShowInfo;
121        private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
122        private System.Windows.Forms.ToolStripMenuItem tsExit;
123    }
124}
Note: See TracBrowser for help on using the repository browser.