Free cookie consent management tool by TermsFeed Policy Generator

source: branches/SlaveShutdown/HeuristicLab.Clients.Hive.Administrator/3.3/Views/AppointmentTypeView.Designer.cs @ 8953

Last change on this file since 8953 was 8953, checked in by ascheibe, 11 years ago

#1986 added the ui components for shutting down slaves

File size: 3.5 KB
Line 
1namespace HeuristicLab.Clients.Hive.Administrator.Views {
2  partial class AppointmentTypeView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.OfflineRadioButton = new System.Windows.Forms.RadioButton();
27      this.shutdownRadioButton = new System.Windows.Forms.RadioButton();
28      this.panel1 = new System.Windows.Forms.Panel();
29      this.panel1.SuspendLayout();
30      this.SuspendLayout();
31      //
32      // OfflineRadioButton
33      //
34      this.OfflineRadioButton.AutoSize = true;
35      this.OfflineRadioButton.Checked = true;
36      this.OfflineRadioButton.Location = new System.Drawing.Point(3, 3);
37      this.OfflineRadioButton.Name = "OfflineRadioButton";
38      this.OfflineRadioButton.Size = new System.Drawing.Size(55, 17);
39      this.OfflineRadioButton.TabIndex = 0;
40      this.OfflineRadioButton.TabStop = true;
41      this.OfflineRadioButton.Tag = "Offline";
42      this.OfflineRadioButton.Text = "Offline";
43      this.OfflineRadioButton.UseVisualStyleBackColor = true;
44      this.OfflineRadioButton.CheckedChanged += new System.EventHandler(this.OfflineRadioButton_CheckedChanged);
45      //
46      // shutdownRadioButton
47      //
48      this.shutdownRadioButton.AutoSize = true;
49      this.shutdownRadioButton.Location = new System.Drawing.Point(3, 26);
50      this.shutdownRadioButton.Name = "shutdownRadioButton";
51      this.shutdownRadioButton.Size = new System.Drawing.Size(105, 17);
52      this.shutdownRadioButton.TabIndex = 1;
53      this.shutdownRadioButton.TabStop = true;
54      this.shutdownRadioButton.Tag = "Shutdown";
55      this.shutdownRadioButton.Text = "Shutdown Signal";
56      this.shutdownRadioButton.UseVisualStyleBackColor = true;
57      this.shutdownRadioButton.CheckedChanged += new System.EventHandler(this.shutdownRadioButton_CheckedChanged);
58      //
59      // panel1
60      //
61      this.panel1.Controls.Add(this.shutdownRadioButton);
62      this.panel1.Controls.Add(this.OfflineRadioButton);
63      this.panel1.Location = new System.Drawing.Point(3, 3);
64      this.panel1.Name = "panel1";
65      this.panel1.Size = new System.Drawing.Size(114, 51);
66      this.panel1.TabIndex = 2;
67      //
68      // AppointmentTypeView
69      //
70      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
71      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
72      this.Controls.Add(this.panel1);
73      this.Name = "AppointmentTypeView";
74      this.Size = new System.Drawing.Size(120, 57);
75      this.panel1.ResumeLayout(false);
76      this.panel1.PerformLayout();
77      this.ResumeLayout(false);
78
79    }
80
81    #endregion
82
83    private System.Windows.Forms.RadioButton OfflineRadioButton;
84    private System.Windows.Forms.RadioButton shutdownRadioButton;
85    private System.Windows.Forms.Panel panel1;
86  }
87}
Note: See TracBrowser for help on using the repository browser.