Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientUserManagement/HeuristicLab.Clients.Access/3.3/ClientViews/ClientRegistrationDialog.Designer.cs @ 7536

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

#1648 added client registration ui

File size: 5.5 KB
Line 
1namespace HeuristicLab.Clients.Access {
2  partial class ClientRegistrationDialog {
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.btnCollectInformation = new System.Windows.Forms.Button();
27      this.richTextBox1 = new System.Windows.Forms.RichTextBox();
28      this.clientView = new HeuristicLab.Clients.Access.ClientView();
29      this.progressBar = new System.Windows.Forms.ProgressBar();
30      this.btnRegisterClient = new System.Windows.Forms.Button();
31      this.btnCancel = new System.Windows.Forms.Button();
32      this.SuspendLayout();
33      //
34      // btnCollectInformation
35      //
36      this.btnCollectInformation.Location = new System.Drawing.Point(12, 114);
37      this.btnCollectInformation.Name = "btnCollectInformation";
38      this.btnCollectInformation.Size = new System.Drawing.Size(111, 23);
39      this.btnCollectInformation.TabIndex = 1;
40      this.btnCollectInformation.Text = "Collect information";
41      this.btnCollectInformation.UseVisualStyleBackColor = true;
42      this.btnCollectInformation.Click += new System.EventHandler(this.btnCollectInformation_Click);
43      //
44      // richTextBox1
45      //
46      this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
47                  | System.Windows.Forms.AnchorStyles.Right)));
48      this.richTextBox1.Location = new System.Drawing.Point(12, 12);
49      this.richTextBox1.Name = "richTextBox1";
50      this.richTextBox1.Size = new System.Drawing.Size(638, 96);
51      this.richTextBox1.TabIndex = 2;
52      this.richTextBox1.Text = "";
53      //
54      // clientView
55      //
56      this.clientView.Caption = "Client View";
57      this.clientView.Content = null;
58      this.clientView.Location = new System.Drawing.Point(12, 143);
59      this.clientView.Name = "clientView";
60      this.clientView.ReadOnly = false;
61      this.clientView.Size = new System.Drawing.Size(638, 340);
62      this.clientView.TabIndex = 3;
63      //
64      // progressBar
65      //
66      this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
67                  | System.Windows.Forms.AnchorStyles.Right)));
68      this.progressBar.Location = new System.Drawing.Point(130, 114);
69      this.progressBar.Name = "progressBar";
70      this.progressBar.Size = new System.Drawing.Size(520, 23);
71      this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
72      this.progressBar.TabIndex = 4;
73      this.progressBar.Visible = false;
74      //
75      // btnRegisterClient
76      //
77      this.btnRegisterClient.Enabled = false;
78      this.btnRegisterClient.Location = new System.Drawing.Point(12, 516);
79      this.btnRegisterClient.Name = "btnRegisterClient";
80      this.btnRegisterClient.Size = new System.Drawing.Size(88, 23);
81      this.btnRegisterClient.TabIndex = 5;
82      this.btnRegisterClient.Text = "Register client";
83      this.btnRegisterClient.UseVisualStyleBackColor = true;
84      this.btnRegisterClient.Click += new System.EventHandler(this.btnRegisterClient_Click);
85      //
86      // btnCancel
87      //
88      this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
89      this.btnCancel.Location = new System.Drawing.Point(574, 516);
90      this.btnCancel.Name = "btnCancel";
91      this.btnCancel.Size = new System.Drawing.Size(75, 23);
92      this.btnCancel.TabIndex = 6;
93      this.btnCancel.Text = "Close";
94      this.btnCancel.UseVisualStyleBackColor = true;
95      //
96      // ClientRegistrationDialog
97      //
98      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
99      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
100      this.CancelButton = this.btnCancel;
101      this.ClientSize = new System.Drawing.Size(662, 552);
102      this.Controls.Add(this.btnCancel);
103      this.Controls.Add(this.btnRegisterClient);
104      this.Controls.Add(this.progressBar);
105      this.Controls.Add(this.clientView);
106      this.Controls.Add(this.richTextBox1);
107      this.Controls.Add(this.btnCollectInformation);
108      this.MaximizeBox = false;
109      this.MinimizeBox = false;
110      this.Name = "ClientRegistrationDialog";
111      this.ShowIcon = false;
112      this.ShowInTaskbar = false;
113      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
114      this.Text = "Client Registration";
115      this.TopMost = true;
116      this.ResumeLayout(false);
117
118    }
119
120    #endregion
121
122    private System.Windows.Forms.Button btnCollectInformation;
123    private System.Windows.Forms.RichTextBox richTextBox1;
124    private ClientView clientView;
125    private System.Windows.Forms.ProgressBar progressBar;
126    private System.Windows.Forms.Button btnRegisterClient;
127    private System.Windows.Forms.Button btnCancel;
128
129  }
130}
Note: See TracBrowser for help on using the repository browser.