Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Clients.Access.Views/3.3/UserViews/UserInformationDialog.Designer.cs @ 8042

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

#1648 integrated access service client parts into trunk

File size: 3.6 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.closeButton = new System.Windows.Forms.Button();
27      this.refreshableLightweightUserInformationView = new HeuristicLab.Clients.Access.Views.RefreshableLightweightUserInformationView();
28      this.SuspendLayout();
29      //
30      // closeButton
31      //
32      this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
33      this.closeButton.Location = new System.Drawing.Point(16, 245);
34      this.closeButton.Name = "closeButton";
35      this.closeButton.Size = new System.Drawing.Size(75, 23);
36      this.closeButton.TabIndex = 1;
37      this.closeButton.Text = "OK";
38      this.closeButton.UseVisualStyleBackColor = true;
39      this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
40      //
41      // refreshableLightweightUserInformationView
42      //
43      this.refreshableLightweightUserInformationView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
44                  | System.Windows.Forms.AnchorStyles.Left)
45                  | System.Windows.Forms.AnchorStyles.Right)));
46      this.refreshableLightweightUserInformationView.Caption = "";
47      this.refreshableLightweightUserInformationView.Content = null;
48      this.refreshableLightweightUserInformationView.Location = new System.Drawing.Point(12, 12);
49      this.refreshableLightweightUserInformationView.Name = "refreshableLightweightUserInformationView";
50      this.refreshableLightweightUserInformationView.ReadOnly = false;
51      this.refreshableLightweightUserInformationView.Size = new System.Drawing.Size(362, 262);
52      this.refreshableLightweightUserInformationView.TabIndex = 0;
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(386, 286);
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.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.UserInformationDialog_FormClosing);
70      this.ResumeLayout(false);
71
72    }
73
74    #endregion
75
76    private RefreshableLightweightUserInformationView refreshableLightweightUserInformationView;
77    private System.Windows.Forms.Button closeButton;
78  }
79}
Note: See TracBrowser for help on using the repository browser.