Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Clients.Hive.Administrator/3.3/Views/AppointmentTypeDialog.Designer.cs @ 8957

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

#1986 merged SlaveShutdown branch back into trunk

File size: 3.6 KB
Line 
1namespace HeuristicLab.Clients.Hive.Administrator.Views {
2  partial class AppointmentTypeDialog {
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 Windows Form 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.okButton = new System.Windows.Forms.Button();
27      this.cancleButton = new System.Windows.Forms.Button();
28      this.appointmentTypeView = new HeuristicLab.Clients.Hive.Administrator.Views.AppointmentTypeView();
29      this.SuspendLayout();
30      //
31      // okButton
32      //
33      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
34      this.okButton.Location = new System.Drawing.Point(12, 75);
35      this.okButton.Name = "okButton";
36      this.okButton.Size = new System.Drawing.Size(75, 23);
37      this.okButton.TabIndex = 0;
38      this.okButton.Text = "OK";
39      this.okButton.UseVisualStyleBackColor = true;
40      this.okButton.Click += new System.EventHandler(this.okButton_Click);
41      //
42      // cancleButton
43      //
44      this.cancleButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
45      this.cancleButton.Location = new System.Drawing.Point(127, 75);
46      this.cancleButton.Name = "cancleButton";
47      this.cancleButton.Size = new System.Drawing.Size(75, 23);
48      this.cancleButton.TabIndex = 1;
49      this.cancleButton.Text = "Cancel";
50      this.cancleButton.UseVisualStyleBackColor = true;
51      this.cancleButton.Click += new System.EventHandler(this.cancleButton_Click);
52      //
53      // appointmentTypeView
54      //
55      this.appointmentTypeView.AppointmentType = HeuristicLab.Clients.Hive.DowntimeType.Offline;
56      this.appointmentTypeView.Location = new System.Drawing.Point(12, 12);
57      this.appointmentTypeView.Name = "appointmentTypeView";
58      this.appointmentTypeView.Size = new System.Drawing.Size(120, 57);
59      this.appointmentTypeView.TabIndex = 2;
60      //
61      // AppointmentTypeDialog
62      //
63      this.AcceptButton = this.okButton;
64      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
65      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
66      this.CancelButton = this.cancleButton;
67      this.ClientSize = new System.Drawing.Size(214, 108);
68      this.Controls.Add(this.appointmentTypeView);
69      this.Controls.Add(this.cancleButton);
70      this.Controls.Add(this.okButton);
71      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
72      this.MaximizeBox = false;
73      this.MinimizeBox = false;
74      this.Name = "AppointmentTypeDialog";
75      this.ShowIcon = false;
76      this.ShowInTaskbar = false;
77      this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
78      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
79      this.Text = "Select Type of Downtime";
80      this.TopMost = true;
81      this.ResumeLayout(false);
82
83    }
84
85    #endregion
86
87    private System.Windows.Forms.Button okButton;
88    private System.Windows.Forms.Button cancleButton;
89    private AppointmentTypeView appointmentTypeView;
90  }
91}
Note: See TracBrowser for help on using the repository browser.