Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientUserManagement/HeuristicLab.Clients.Access.Views/3.3/UserViews/UserInformationDialog.Designer.cs @ 7599

Last change on this file since 7599 was 7599, checked in by ascheibe, 13 years ago

#1648 added first version of an user information dialog

File size: 3.5 KB
Line 
1namespace HeuristicLab.Clients.Access.Views {
2  partial class UserInformationDialog {
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.refreshableLightweightUserInformationView = new HeuristicLab.Clients.Access.Views.RefreshableLightweightUserInformationView();
27      this.closeButton = new System.Windows.Forms.Button();
28      this.SuspendLayout();
29      //
30      // refreshableLightweightUserInformationView
31      //
32      this.refreshableLightweightUserInformationView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
33                  | System.Windows.Forms.AnchorStyles.Left)
34                  | System.Windows.Forms.AnchorStyles.Right)));
35      this.refreshableLightweightUserInformationView.Caption = "";
36      this.refreshableLightweightUserInformationView.Content = null;
37      this.refreshableLightweightUserInformationView.Location = new System.Drawing.Point(12, 12);
38      this.refreshableLightweightUserInformationView.Name = "refreshableLightweightUserInformationView";
39      this.refreshableLightweightUserInformationView.ReadOnly = false;
40      this.refreshableLightweightUserInformationView.Size = new System.Drawing.Size(464, 299);
41      this.refreshableLightweightUserInformationView.TabIndex = 0;
42      //
43      // closeButton
44      //
45      this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
46      this.closeButton.Location = new System.Drawing.Point(401, 328);
47      this.closeButton.Name = "closeButton";
48      this.closeButton.Size = new System.Drawing.Size(75, 23);
49      this.closeButton.TabIndex = 1;
50      this.closeButton.Text = "OK";
51      this.closeButton.UseVisualStyleBackColor = true;
52      this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
53      //
54      // UserInformationDialog
55      //
56      this.AcceptButton = this.closeButton;
57      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
58      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
59      this.ClientSize = new System.Drawing.Size(488, 363);
60      this.Controls.Add(this.closeButton);
61      this.Controls.Add(this.refreshableLightweightUserInformationView);
62      this.MaximizeBox = false;
63      this.MinimizeBox = false;
64      this.Name = "UserInformationDialog";
65      this.ShowIcon = false;
66      this.ShowInTaskbar = false;
67      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
68      this.Text = "User Information";
69      this.ResumeLayout(false);
70
71    }
72
73    #endregion
74
75    private RefreshableLightweightUserInformationView refreshableLightweightUserInformationView;
76    private System.Windows.Forms.Button closeButton;
77  }
78}
Note: See TracBrowser for help on using the repository browser.