Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/30/12 16:37:17 (12 years ago)
Author:
ascheibe
Message:

#1648 improved client information view

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ClientUserManagement/HeuristicLab.Clients.Access.Views/3.3/ClientViews/ClientInformationDialog.Designer.cs

    r7557 r7933  
    2424    /// </summary>
    2525    private void InitializeComponent() {
     26      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ClientInformationDialog));
    2627      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();
    2732      this.SuspendLayout();
    2833      //
     
    3338      this.clientView.Caption = "Client View";
    3439      this.clientView.Content = null;
    35       this.clientView.Location = new System.Drawing.Point(12, 12);
     40      this.clientView.Location = new System.Drawing.Point(12, 42);
    3641      this.clientView.Name = "clientView";
    3742      this.clientView.ReadOnly = false;
    38       this.clientView.Size = new System.Drawing.Size(528, 452);
     43      this.clientView.Size = new System.Drawing.Size(653, 315);
    3944      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;
    4090      //
    4191      // ClientInformationDialog
     
    4393      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    4494      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    45       this.ClientSize = new System.Drawing.Size(552, 345);
     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);
    46100      this.Controls.Add(this.clientView);
    47101      this.MaximizeBox = false;
     
    54108      this.TopMost = true;
    55109      this.ResumeLayout(false);
     110      this.PerformLayout();
    56111
    57112    }
     
    60115
    61116    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;
    62121  }
    63122}
Note: See TracChangeset for help on using the changeset viewer.