Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/08/10 09:35:24 (14 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:
6 edited

Legend:

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

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

    r4726 r4740  
    7575  </ItemGroup>
    7676  <ItemGroup>
    77     <None Include="Properties\DataSources\HeuristicLab.Services.Authentication.DataTransfer.Application.datasource" />
     77    <None Include="Properties\DataSources\HeuristicLab.Services.Authentication.DataTransfer.Membership.datasource" />
    7878    <None Include="Properties\DataSources\HeuristicLab.Services.Authentication.DataTransfer.Role.datasource" />
    7979    <None Include="Properties\DataSources\HeuristicLab.Services.Authentication.DataTransfer.User.datasource" />
  • branches/UserManagement/HeuristicLab.Services.Authentication.TestClient/TestClient.cs

    r4726 r4740  
    2020            {
    2121
     22
    2223                //Console.WriteLine("Insert new application");
    2324                //Application app1 = new Application() { ApplicationName="SPR Application", Description="SPR Application"};
  • 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
  • branches/UserManagement/HeuristicLab.Services.Authentication.TestClient/UserManagement.cs

    r4726 r4740  
    179179        }
    180180
     181        private void bsApplications_CurrentChanged(object sender, EventArgs e)
     182        {
     183
     184        }
     185
    181186   
    182187
  • branches/UserManagement/HeuristicLab.Services.Authentication.TestClient/UserManagement.resx

    r4726 r4740  
    139139    <value>False</value>
    140140  </metadata>
     141  <metadata name="bsApplications.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
     142    <value>17, 56</value>
     143  </metadata>
    141144  <metadata name="Membership.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
    142145    <value>True</value>
     
    145148    <value>17, 17</value>
    146149  </metadata>
    147   <metadata name="bsApplications.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    148     <value>17, 56</value>
     150  <metadata name="Membership.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
     151    <value>True</value>
    149152  </metadata>
    150   <metadata name="bsApplications.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
    151     <value>17, 56</value>
     153  <metadata name="bsUsers.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
     154    <value>17, 17</value>
    152155  </metadata>
    153156  <metadata name="bsUser.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
Note: See TracChangeset for help on using the changeset viewer.