Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveTrayIcon/MainWindow.Designer.cs @ 5677

Last change on this file since 5677 was 5677, checked in by ascheibe, 13 years ago

#1233 some minor ui fixes for the slave

File size: 4.9 KB
Line 
1
2namespace HeuristicLab.Clients.Hive.SlaveCore.SlaveTrayIcon {
3  partial class MainWindow {
4    /// <summary>
5    /// Required designer variable.
6    /// </summary>
7    private System.ComponentModel.IContainer components = null;
8
9    /// <summary>
10    /// Clean up any resources being used.
11    /// </summary>
12    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
13    protected override void Dispose(bool disposing) {
14      if (disposing && (components != null)) {
15        components.Dispose();
16      }
17      base.Dispose(disposing);
18    }
19
20    #region Windows Form Designer generated code
21
22    /// <summary>
23    /// Required method for Designer support - do not modify
24    /// the contents of this method with the code editor.
25    /// </summary>
26    private void InitializeComponent() {
27      this.components = new System.ComponentModel.Container();
28      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
29      this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
30      this.contextMenuNotifyIcon = new System.Windows.Forms.ContextMenuStrip(this.components);
31      this.showToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
32      this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
33      this.slaveView = new HeuristicLab.Clients.Hive.SlaveCore.Views.SlaveView();
34      this.contextMenuNotifyIcon.SuspendLayout();
35      this.SuspendLayout();
36      //
37      // notifyIcon
38      //
39      this.notifyIcon.BalloonTipText = "A client for computing jobs sent from HeuristicLab Hive";
40      this.notifyIcon.BalloonTipTitle = "HeuristicLab Hive Slave";
41      this.notifyIcon.ContextMenuStrip = this.contextMenuNotifyIcon;
42      this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
43      this.notifyIcon.Text = "HeuristicLab Hive Slave";
44      this.notifyIcon.Visible = true;
45      this.notifyIcon.DoubleClick += new System.EventHandler(this.notifyIcon_DoubleClick);
46      //
47      // contextMenuNotifyIcon
48      //
49      this.contextMenuNotifyIcon.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
50            this.showToolStripMenuItem,
51            this.closeToolStripMenuItem});
52      this.contextMenuNotifyIcon.Name = "contextMenuNotifyIcon";
53      this.contextMenuNotifyIcon.Size = new System.Drawing.Size(104, 48);
54      //
55      // showToolStripMenuItem
56      //
57      this.showToolStripMenuItem.Name = "showToolStripMenuItem";
58      this.showToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
59      this.showToolStripMenuItem.Text = "Show";
60      this.showToolStripMenuItem.Click += new System.EventHandler(this.showToolStripMenuItem_Click);
61      //
62      // closeToolStripMenuItem
63      //
64      this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
65      this.closeToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
66      this.closeToolStripMenuItem.Text = "Close";
67      this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
68      //
69      // slaveView
70      //
71      this.slaveView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
72                  | System.Windows.Forms.AnchorStyles.Left)
73                  | System.Windows.Forms.AnchorStyles.Right)));
74      this.slaveView.Caption = "HeuristicLab Slave View";
75      this.slaveView.Content = null;
76      this.slaveView.Location = new System.Drawing.Point(12, 12);
77      this.slaveView.Name = "slaveView";
78      this.slaveView.ReadOnly = false;
79      this.slaveView.Size = new System.Drawing.Size(593, 430);
80      this.slaveView.TabIndex = 0;
81      //
82      // MainWindow
83      //
84      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
85      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
86      this.ClientSize = new System.Drawing.Size(617, 454);
87      this.ContextMenuStrip = this.contextMenuNotifyIcon;
88      this.Controls.Add(this.slaveView);
89      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
90      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
91      this.MaximizeBox = false;
92      this.Name = "MainWindow";
93      this.Text = "HeuristicLab Hive Slave View";
94      this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
95      this.contextMenuNotifyIcon.ResumeLayout(false);
96      this.ResumeLayout(false);
97
98    }
99
100    #endregion
101
102    private System.Windows.Forms.NotifyIcon notifyIcon;
103    private Views.SlaveView slaveView;
104    private System.Windows.Forms.ContextMenuStrip contextMenuNotifyIcon;
105    private System.Windows.Forms.ToolStripMenuItem showToolStripMenuItem;
106    private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem;
107  }
108}
109
Note: See TracBrowser for help on using the repository browser.