Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP-MoveOperators/HeuristicLab.Clients.Access.Views/3.3/UserViews/LightweightUserGroupSelectionDialog.Designer.cs @ 10473

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

#1648 integrated access service client parts into trunk

File size: 4.1 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.AbortButton = 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      // AbortButton
43      //
44      this.AbortButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
45      this.AbortButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
46      this.AbortButton.Location = new System.Drawing.Point(455, 290);
47      this.AbortButton.Name = "AbortButton";
48      this.AbortButton.Size = new System.Drawing.Size(75, 23);
49      this.AbortButton.TabIndex = 2;
50      this.AbortButton.Text = "Cancel";
51      this.AbortButton.UseVisualStyleBackColor = true;
52      this.AbortButton.Click += new System.EventHandler(this.CancelButton_Click);
53      //
54      // lightweightUserGroupSelectionView
55      //
56      this.lightweightUserGroupSelectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
57            | System.Windows.Forms.AnchorStyles.Left)
58            | System.Windows.Forms.AnchorStyles.Right)));
59      this.lightweightUserGroupSelectionView.Location = new System.Drawing.Point(12, 12);
60      this.lightweightUserGroupSelectionView.Name = "lightweightUserGroupSelectionView";
61      this.lightweightUserGroupSelectionView.Size = new System.Drawing.Size(518, 272);
62      this.lightweightUserGroupSelectionView.TabIndex = 0;
63      //
64      // LightweightUserGroupSelectionDialog
65      //
66      this.AcceptButton = this.OkButton;
67      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
68      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
69      this.CancelButton = this.AbortButton;
70      this.ClientSize = new System.Drawing.Size(542, 325);
71      this.Controls.Add(this.AbortButton);
72      this.Controls.Add(this.OkButton);
73      this.Controls.Add(this.lightweightUserGroupSelectionView);
74      this.MaximizeBox = false;
75      this.MinimizeBox = false;
76      this.Name = "LightweightUserGroupSelectionDialog";
77      this.ShowIcon = false;
78      this.ShowInTaskbar = false;
79      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
80      this.Text = "Select users and groups";
81      this.TopMost = true;
82      this.ResumeLayout(false);
83
84    }
85
86    #endregion
87
88    private LightweightUserGroupSelectionView lightweightUserGroupSelectionView;
89    private System.Windows.Forms.Button OkButton;
90    private System.Windows.Forms.Button AbortButton;
91  }
92}
Note: See TracBrowser for help on using the repository browser.