Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1648

  • improved client registration dialog
  • fixed namespaces
File size: 2.2 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      this.clientView = new HeuristicLab.Clients.Access.Views.ClientView();
27      this.SuspendLayout();
28      //
29      // clientView
30      //
31      this.clientView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
32                  | System.Windows.Forms.AnchorStyles.Right)));
33      this.clientView.Caption = "Client View";
34      this.clientView.Content = null;
35      this.clientView.Location = new System.Drawing.Point(12, 12);
36      this.clientView.Name = "clientView";
37      this.clientView.ReadOnly = false;
38      this.clientView.Size = new System.Drawing.Size(528, 452);
39      this.clientView.TabIndex = 0;
40      //
41      // ClientInformationDialog
42      //
43      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
44      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
45      this.ClientSize = new System.Drawing.Size(552, 345);
46      this.Controls.Add(this.clientView);
47      this.MaximizeBox = false;
48      this.MinimizeBox = false;
49      this.Name = "ClientInformationDialog";
50      this.ShowIcon = false;
51      this.ShowInTaskbar = false;
52      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
53      this.Text = "Client Information";
54      this.TopMost = true;
55      this.ResumeLayout(false);
56
57    }
58
59    #endregion
60
61    private ClientView clientView;
62  }
63}
Note: See TracBrowser for help on using the repository browser.