Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientUserManagement/HeuristicLab.Clients.Access.Views/3.3/UserViews/LightweightUserGroupSelectionDialog.Designer.cs @ 7942

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

#1648 added an access client views project for the ui stuff

File size: 4.0 KB
Line 
1namespace HeuristicLab.Clients.Access.Views {
2  partial class LightweightUserGroupSelectionDialog {
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.OkButton = new System.Windows.Forms.Button();
27      this.CancelButton = new System.Windows.Forms.Button();
28      this.lightweightUserGroupSelectionView = new HeuristicLab.Clients.Access.Views.LightweightUserGroupSelectionView();
29      this.SuspendLayout();
30      //
31      // OkButton
32      //
33      this.OkButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
34      this.OkButton.Location = new System.Drawing.Point(374, 290);
35      this.OkButton.Name = "OkButton";
36      this.OkButton.Size = new System.Drawing.Size(75, 23);
37      this.OkButton.TabIndex = 1;
38      this.OkButton.Text = "OK";
39      this.OkButton.UseVisualStyleBackColor = true;
40      this.OkButton.Click += new System.EventHandler(this.OkButton_Click);
41      //
42      // CancelButton
43      //
44      this.CancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
45      this.CancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
46      this.CancelButton.Location = new System.Drawing.Point(455, 290);
47      this.CancelButton.Name = "CancelButton";
48      this.CancelButton.Size = new System.Drawing.Size(75, 23);
49      this.CancelButton.TabIndex = 2;
50      this.CancelButton.Text = "Cancel";
51      this.CancelButton.UseVisualStyleBackColor = true;
52      //
53      // lightweightUserGroupSelectionView
54      //
55      this.lightweightUserGroupSelectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
56                  | System.Windows.Forms.AnchorStyles.Left)
57                  | System.Windows.Forms.AnchorStyles.Right)));
58      this.lightweightUserGroupSelectionView.Location = new System.Drawing.Point(12, 12);
59      this.lightweightUserGroupSelectionView.Name = "lightweightUserGroupSelectionView";
60      this.lightweightUserGroupSelectionView.Size = new System.Drawing.Size(518, 272);
61      this.lightweightUserGroupSelectionView.TabIndex = 0;
62      //
63      // LightweightUserGroupSelectionDialog
64      //
65      this.AcceptButton = this.OkButton;
66      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
67      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
68      this.ClientSize = new System.Drawing.Size(542, 325);
69      this.Controls.Add(this.CancelButton);
70      this.Controls.Add(this.OkButton);
71      this.Controls.Add(this.lightweightUserGroupSelectionView);
72      this.MaximizeBox = false;
73      this.MinimizeBox = false;
74      this.Name = "LightweightUserGroupSelectionDialog";
75      this.ShowIcon = false;
76      this.ShowInTaskbar = false;
77      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
78      this.Text = "Select users and groups";
79      this.TopMost = true;
80      this.ResumeLayout(false);
81
82    }
83
84    #endregion
85
86    private LightweightUserGroupSelectionView lightweightUserGroupSelectionView;
87    private System.Windows.Forms.Button OkButton;
88    private System.Windows.Forms.Button CancelButton;
89  }
90}
Note: See TracBrowser for help on using the repository browser.