Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientUserManagement/HeuristicLab.Clients.Access.Views/3.3/ClientViews/ClientInformationDialog.Designer.cs @ 7933

Last change on this file since 7933 was 7933, checked in by ascheibe, 12 years ago

#1648 improved client information view

File size: 5.5 KB
Line 
1namespace HeuristicLab.Clients.Access.Views {
2  partial class ClientInformationDialog {
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      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ClientInformationDialog));
27      this.clientView = new HeuristicLab.Clients.Access.Views.ClientView();
28      this.refreshButton = new System.Windows.Forms.Button();
29      this.okButton = new System.Windows.Forms.Button();
30      this.registerClientButton = new System.Windows.Forms.Button();
31      this.infoLabel = new System.Windows.Forms.Label();
32      this.SuspendLayout();
33      //
34      // clientView
35      //
36      this.clientView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
37                  | System.Windows.Forms.AnchorStyles.Right)));
38      this.clientView.Caption = "Client View";
39      this.clientView.Content = null;
40      this.clientView.Location = new System.Drawing.Point(12, 42);
41      this.clientView.Name = "clientView";
42      this.clientView.ReadOnly = false;
43      this.clientView.Size = new System.Drawing.Size(653, 315);
44      this.clientView.TabIndex = 0;
45      //
46      // refreshButton
47      //
48      this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
49      this.refreshButton.Location = new System.Drawing.Point(12, 12);
50      this.refreshButton.Name = "refreshButton";
51      this.refreshButton.Size = new System.Drawing.Size(24, 24);
52      this.refreshButton.TabIndex = 1;
53      this.refreshButton.UseVisualStyleBackColor = true;
54      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
55      //
56      // okButton
57      //
58      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
59      this.okButton.Location = new System.Drawing.Point(590, 363);
60      this.okButton.Name = "okButton";
61      this.okButton.Size = new System.Drawing.Size(75, 23);
62      this.okButton.TabIndex = 2;
63      this.okButton.Text = "OK";
64      this.okButton.UseVisualStyleBackColor = true;
65      this.okButton.Click += new System.EventHandler(this.okButton_Click);
66      //
67      // registerClientButton
68      //
69      this.registerClientButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
70      this.registerClientButton.Location = new System.Drawing.Point(13, 362);
71      this.registerClientButton.Name = "registerClientButton";
72      this.registerClientButton.Size = new System.Drawing.Size(84, 23);
73      this.registerClientButton.TabIndex = 3;
74      this.registerClientButton.Text = "Register client";
75      this.registerClientButton.UseVisualStyleBackColor = true;
76      this.registerClientButton.Visible = false;
77      this.registerClientButton.Click += new System.EventHandler(this.registerClientButton_Click);
78      //
79      // infoLabel
80      //
81      this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
82      this.infoLabel.AutoSize = true;
83      this.infoLabel.Location = new System.Drawing.Point(103, 367);
84      this.infoLabel.Name = "infoLabel";
85      this.infoLabel.Size = new System.Drawing.Size(434, 13);
86      this.infoLabel.TabIndex = 4;
87      this.infoLabel.Text = "Your client isn\'t registered yet. Click on the Register client button to use addi" +
88          "tional services.";
89      this.infoLabel.Visible = false;
90      //
91      // ClientInformationDialog
92      //
93      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
94      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
95      this.ClientSize = new System.Drawing.Size(677, 398);
96      this.Controls.Add(this.infoLabel);
97      this.Controls.Add(this.registerClientButton);
98      this.Controls.Add(this.okButton);
99      this.Controls.Add(this.refreshButton);
100      this.Controls.Add(this.clientView);
101      this.MaximizeBox = false;
102      this.MinimizeBox = false;
103      this.Name = "ClientInformationDialog";
104      this.ShowIcon = false;
105      this.ShowInTaskbar = false;
106      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
107      this.Text = "Client Information";
108      this.TopMost = true;
109      this.ResumeLayout(false);
110      this.PerformLayout();
111
112    }
113
114    #endregion
115
116    private ClientView clientView;
117    private System.Windows.Forms.Button refreshButton;
118    private System.Windows.Forms.Button okButton;
119    private System.Windows.Forms.Button registerClientButton;
120    private System.Windows.Forms.Label infoLabel;
121  }
122}
Note: See TracBrowser for help on using the repository browser.