Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP-MoveOperators/HeuristicLab.Clients.Access.Administration/3.3/Views/UserGroupView.Designer.cs @ 8206

Last change on this file since 8206 was 8206, checked in by gkronber, 12 years ago

#1847: merged r8084:8205 from trunk into GP move operators branch

File size: 5.4 KB
Line 
1namespace HeuristicLab.Clients.Access.Administration {
2  partial class UserGroupView {
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 Component 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.label1 = new System.Windows.Forms.Label();
27      this.label2 = new System.Windows.Forms.Label();
28      this.groupNameTextBox = new System.Windows.Forms.TextBox();
29      this.idTextBox = new System.Windows.Forms.TextBox();
30      this.refreshableLightweightUserView = new HeuristicLab.Clients.Access.Views.RefreshableLightweightUserView();
31      this.storeButton = new System.Windows.Forms.Button();
32      this.SuspendLayout();
33      //
34      // label1
35      //
36      this.label1.AutoSize = true;
37      this.label1.Location = new System.Drawing.Point(3, 6);
38      this.label1.Name = "label1";
39      this.label1.Size = new System.Drawing.Size(70, 13);
40      this.label1.TabIndex = 0;
41      this.label1.Text = "Group Name:";
42      //
43      // label2
44      //
45      this.label2.AutoSize = true;
46      this.label2.Location = new System.Drawing.Point(3, 32);
47      this.label2.Name = "label2";
48      this.label2.Size = new System.Drawing.Size(19, 13);
49      this.label2.TabIndex = 1;
50      this.label2.Text = "Id:";
51      //
52      // groupNameTextBox
53      //
54      this.groupNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
55                  | System.Windows.Forms.AnchorStyles.Right)));
56      this.groupNameTextBox.Location = new System.Drawing.Point(79, 3);
57      this.groupNameTextBox.Name = "groupNameTextBox";
58      this.groupNameTextBox.Size = new System.Drawing.Size(675, 20);
59      this.groupNameTextBox.TabIndex = 2;
60      this.groupNameTextBox.TextChanged += new System.EventHandler(this.groupNameTextBox_TextChanged);
61      //
62      // idTextBox
63      //
64      this.idTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
65                  | System.Windows.Forms.AnchorStyles.Right)));
66      this.idTextBox.Enabled = false;
67      this.idTextBox.Location = new System.Drawing.Point(79, 29);
68      this.idTextBox.Name = "idTextBox";
69      this.idTextBox.Size = new System.Drawing.Size(675, 20);
70      this.idTextBox.TabIndex = 3;
71      //
72      // refreshableLightweightUserView
73      //
74      this.refreshableLightweightUserView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
75                  | System.Windows.Forms.AnchorStyles.Left)
76                  | System.Windows.Forms.AnchorStyles.Right)));
77      this.refreshableLightweightUserView.Caption = "RefreshableLightweightUser View";
78      this.refreshableLightweightUserView.Content = null;
79      this.refreshableLightweightUserView.FetchSelectedUsers = null;
80      this.refreshableLightweightUserView.Location = new System.Drawing.Point(0, 55);
81      this.refreshableLightweightUserView.Name = "refreshableLightweightUserView";
82      this.refreshableLightweightUserView.ReadOnly = false;
83      this.refreshableLightweightUserView.Size = new System.Drawing.Size(754, 282);
84      this.refreshableLightweightUserView.TabIndex = 4;
85      //
86      // storeButton
87      //
88      this.storeButton.Enabled = false;
89      this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PublishToWeb;
90      this.storeButton.Location = new System.Drawing.Point(31, 58);
91      this.storeButton.Name = "storeButton";
92      this.storeButton.Size = new System.Drawing.Size(24, 24);
93      this.storeButton.TabIndex = 5;
94      this.storeButton.UseVisualStyleBackColor = true;
95      this.storeButton.Click += new System.EventHandler(this.storeButton_Click);
96      //
97      // UserGroupView
98      //
99      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
100      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
101      this.Controls.Add(this.storeButton);
102      this.Controls.Add(this.refreshableLightweightUserView);
103      this.Controls.Add(this.idTextBox);
104      this.Controls.Add(this.groupNameTextBox);
105      this.Controls.Add(this.label2);
106      this.Controls.Add(this.label1);
107      this.Name = "UserGroupView";
108      this.Size = new System.Drawing.Size(757, 340);
109      this.ResumeLayout(false);
110      this.PerformLayout();
111
112    }
113
114    #endregion
115
116    private System.Windows.Forms.Label label1;
117    private System.Windows.Forms.Label label2;
118    private System.Windows.Forms.TextBox groupNameTextBox;
119    private System.Windows.Forms.TextBox idTextBox;
120    private Views.RefreshableLightweightUserView refreshableLightweightUserView;
121    private System.Windows.Forms.Button storeButton;
122  }
123}
Note: See TracBrowser for help on using the repository browser.