Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2845_EnhancedProgress/HeuristicLab.Clients.Access.Views/3.3/ClientViews/ClientInformationDialog.Designer.cs @ 16311

Last change on this file since 16311 was 16311, checked in by pfleck, 5 years ago

#2845 Merged trunk changes into branch (15406-15681, 15683-16308)

File size: 6.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Clients.Access.Views {
23  partial class ClientInformationDialog {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ClientInformationDialog));
48      this.clientView = new HeuristicLab.Clients.Access.Views.ClientView();
49      this.refreshButton = new System.Windows.Forms.Button();
50      this.okButton = new System.Windows.Forms.Button();
51      this.registerClientButton = new System.Windows.Forms.Button();
52      this.infoLabel = new System.Windows.Forms.Label();
53      this.SuspendLayout();
54      //
55      // clientView
56      //
57      this.clientView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
58                  | System.Windows.Forms.AnchorStyles.Right)));
59      this.clientView.Caption = "Client View";
60      this.clientView.Content = null;
61      this.clientView.Location = new System.Drawing.Point(12, 42);
62      this.clientView.Name = "clientView";
63      this.clientView.ReadOnly = false;
64      this.clientView.Size = new System.Drawing.Size(653, 315);
65      this.clientView.TabIndex = 0;
66      //
67      // refreshButton
68      //
69      this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
70      this.refreshButton.Location = new System.Drawing.Point(12, 12);
71      this.refreshButton.Name = "refreshButton";
72      this.refreshButton.Size = new System.Drawing.Size(24, 24);
73      this.refreshButton.TabIndex = 1;
74      this.refreshButton.UseVisualStyleBackColor = true;
75      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
76      //
77      // okButton
78      //
79      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
80      this.okButton.Location = new System.Drawing.Point(590, 363);
81      this.okButton.Name = "okButton";
82      this.okButton.Size = new System.Drawing.Size(75, 23);
83      this.okButton.TabIndex = 2;
84      this.okButton.Text = "OK";
85      this.okButton.UseVisualStyleBackColor = true;
86      this.okButton.Click += new System.EventHandler(this.okButton_Click);
87      //
88      // registerClientButton
89      //
90      this.registerClientButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
91      this.registerClientButton.Location = new System.Drawing.Point(13, 362);
92      this.registerClientButton.Name = "registerClientButton";
93      this.registerClientButton.Size = new System.Drawing.Size(84, 23);
94      this.registerClientButton.TabIndex = 3;
95      this.registerClientButton.Text = "Register client";
96      this.registerClientButton.UseVisualStyleBackColor = true;
97      this.registerClientButton.Visible = false;
98      this.registerClientButton.Click += new System.EventHandler(this.registerClientButton_Click);
99      //
100      // infoLabel
101      //
102      this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
103      this.infoLabel.AutoSize = true;
104      this.infoLabel.Location = new System.Drawing.Point(103, 367);
105      this.infoLabel.Name = "infoLabel";
106      this.infoLabel.Size = new System.Drawing.Size(434, 13);
107      this.infoLabel.TabIndex = 4;
108      this.infoLabel.Text = "Your client isn\'t registered yet. Click on the Register client button to use addi" +
109          "tional services.";
110      this.infoLabel.Visible = false;
111      //
112      // ClientInformationDialog
113      //
114      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
115      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
116      this.ClientSize = new System.Drawing.Size(677, 398);
117      this.Controls.Add(this.infoLabel);
118      this.Controls.Add(this.registerClientButton);
119      this.Controls.Add(this.okButton);
120      this.Controls.Add(this.refreshButton);
121      this.Controls.Add(this.clientView);
122      this.MaximizeBox = false;
123      this.MinimizeBox = false;
124      this.Name = "ClientInformationDialog";
125      this.ShowIcon = false;
126      this.ShowInTaskbar = false;
127      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
128      this.Text = "Client Information";
129      this.TopMost = true;
130      this.ResumeLayout(false);
131      this.PerformLayout();
132
133    }
134
135    #endregion
136
137    private ClientView clientView;
138    private System.Windows.Forms.Button refreshButton;
139    private System.Windows.Forms.Button okButton;
140    private System.Windows.Forms.Button registerClientButton;
141    private System.Windows.Forms.Label infoLabel;
142  }
143}
Note: See TracBrowser for help on using the repository browser.