Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1233

  • rename 'Slave' namespace to 'SlaveCore' (and assemblies etc) to avoid problems with 'Slave' class
  • use svcutil (OKB-style)
File size: 4.5 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.Caption = "HeuristicLab Slave View";
72      this.slaveView.Content = null;
73      this.slaveView.Location = new System.Drawing.Point(12, 12);
74      this.slaveView.Name = "slaveView";
75      this.slaveView.ReadOnly = false;
76      this.slaveView.Size = new System.Drawing.Size(658, 430);
77      this.slaveView.TabIndex = 0;
78      //
79      // MainWindow
80      //
81      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
82      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
83      this.ClientSize = new System.Drawing.Size(618, 454);
84      this.ContextMenuStrip = this.contextMenuNotifyIcon;
85      this.Controls.Add(this.slaveView);
86      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
87      this.Name = "MainWindow";
88      this.Text = "HeuristicLab Hive Slave View";
89      this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
90      this.contextMenuNotifyIcon.ResumeLayout(false);
91      this.ResumeLayout(false);
92
93    }
94
95    #endregion
96
97    private System.Windows.Forms.NotifyIcon notifyIcon;
98    private Views.SlaveView slaveView;
99    private System.Windows.Forms.ContextMenuStrip contextMenuNotifyIcon;
100    private System.Windows.Forms.ToolStripMenuItem showToolStripMenuItem;
101    private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem;
102  }
103}
104
Note: See TracBrowser for help on using the repository browser.