Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/08/10 09:35:24 (13 years ago)
Author:
jwolfing
Message:

#1196 Changed DataTransfer Structure factoring in abstract class. Added new TestClient2 only to test the new method. All other comment lines, are lines they should be changed to the new structure.

Location:
branches/UserManagement/HeuristicLab.Services.Authentication.TestClient
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/UserManagement/HeuristicLab.Services.Authentication.TestClient

    • Property svn:ignore set to
      bin
      obj
  • branches/UserManagement/HeuristicLab.Services.Authentication.TestClient/UserManagement.Designer.cs

    r4726 r4740  
    4747            this.btnNewUser = new System.Windows.Forms.Button();
    4848            this.dgvUsers = new System.Windows.Forms.DataGridView();
     49            this.userNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     50            this.isAnonymousDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     51            this.Membership = new System.Windows.Forms.DataGridViewTextBoxColumn();
    4952            this.bsUsers = new System.Windows.Forms.BindingSource(this.components);
    5053            this.tcUser = new System.Windows.Forms.TabControl();
     
    8285            this.userNameDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
    8386            this.bsUserRoles = new System.Windows.Forms.BindingSource(this.components);
    84             this.Membership = new System.Windows.Forms.DataGridViewTextBoxColumn();
    85             this.isAnonymousDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
    86             this.userNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
    8787            roleNameLabel = new System.Windows.Forms.Label();
    8888            descriptionLabel = new System.Windows.Forms.Label();
     
    223223            //
    224224            this.bsApplications.DataSource = typeof(HeuristicLab.Services.Authentication.DataTransfer.Application);
     225            this.bsApplications.CurrentChanged += new System.EventHandler(this.bsApplications_CurrentChanged);
    225226            //
    226227            // label1
     
    297298            this.dgvUsers.TabIndex = 1;
    298299            this.dgvUsers.SelectionChanged += new System.EventHandler(this.dgvUsers_SelectionChanged);
     300            //
     301            // userNameDataGridViewTextBoxColumn
     302            //
     303            this.userNameDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     304            this.userNameDataGridViewTextBoxColumn.DataPropertyName = "UserName";
     305            this.userNameDataGridViewTextBoxColumn.HeaderText = "UserName";
     306            this.userNameDataGridViewTextBoxColumn.Name = "userNameDataGridViewTextBoxColumn";
     307            //
     308            // isAnonymousDataGridViewCheckBoxColumn
     309            //
     310            this.isAnonymousDataGridViewCheckBoxColumn.DataPropertyName = "IsAnonymous";
     311            this.isAnonymousDataGridViewCheckBoxColumn.HeaderText = "IsAnonymous";
     312            this.isAnonymousDataGridViewCheckBoxColumn.Name = "isAnonymousDataGridViewCheckBoxColumn";
     313            //
     314            // Membership
     315            //
     316            this.Membership.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     317            this.Membership.DataPropertyName = "Membership.Email";
     318            this.Membership.HeaderText = "EMail";
     319            this.Membership.Name = "Membership";
     320            this.Membership.Width = 58;
    299321            //
    300322            // bsUsers
     
    632654            //
    633655            this.bsUserRoles.DataSource = typeof(HeuristicLab.Services.Authentication.DataTransfer.Role);
    634             //
    635             // Membership
    636             //
    637             this.Membership.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
    638             this.Membership.DataPropertyName = "Membership.Email";
    639             this.Membership.HeaderText = "EMail";
    640             this.Membership.Name = "Membership";
    641             this.Membership.Width = 58;
    642             //
    643             // isAnonymousDataGridViewCheckBoxColumn
    644             //
    645             this.isAnonymousDataGridViewCheckBoxColumn.DataPropertyName = "IsAnonymous";
    646             this.isAnonymousDataGridViewCheckBoxColumn.HeaderText = "IsAnonymous";
    647             this.isAnonymousDataGridViewCheckBoxColumn.Name = "isAnonymousDataGridViewCheckBoxColumn";
    648             //
    649             // userNameDataGridViewTextBoxColumn
    650             //
    651             this.userNameDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
    652             this.userNameDataGridViewTextBoxColumn.DataPropertyName = "UserName";
    653             this.userNameDataGridViewTextBoxColumn.HeaderText = "UserName";
    654             this.userNameDataGridViewTextBoxColumn.Name = "userNameDataGridViewTextBoxColumn";
    655656            //
    656657            // UserManagement
Note: See TracChangeset for help on using the changeset viewer.