Free cookie consent management tool by TermsFeed Policy Generator

Changeset 7281


Ignore:
Timestamp:
01/05/12 17:06:16 (12 years ago)
Author:
spimming
Message:

#1680:

  • Subscription DTO
  • View for subscription items
  • Dialog to add new azure subscription
  • General view for cloud resources
Location:
branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3
Files:
8 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/HeuristicLab.Clients.Hive.CloudManager-3.3.csproj

    r7278 r7281  
    5151    <Compile Include="CloudManagerClient.cs" />
    5252    <Compile Include="MenuItems\CloudManagerMenuItem.cs" />
     53    <Compile Include="Model\Subscription.cs" />
    5354    <Compile Include="Plugin.cs" />
    5455    <Compile Include="Properties\AssemblyInfo.cs" />
     56    <Compile Include="Views\AddSubscriptionDialog.cs">
     57      <SubType>Form</SubType>
     58    </Compile>
     59    <Compile Include="Views\AddSubscriptionDialog.Designer.cs">
     60      <DependentUpon>AddSubscriptionDialog.cs</DependentUpon>
     61    </Compile>
     62    <Compile Include="Views\CloudResourcesView.cs">
     63      <SubType>UserControl</SubType>
     64    </Compile>
     65    <Compile Include="Views\CloudResourcesView.Designer.cs">
     66      <DependentUpon>CloudResourcesView.cs</DependentUpon>
     67    </Compile>
    5568    <Compile Include="Views\HiveCloudManagerView.cs">
    5669      <SubType>UserControl</SubType>
     
    5871    <Compile Include="Views\HiveCloudManagerView.Designer.cs">
    5972      <DependentUpon>HiveCloudManagerView.cs</DependentUpon>
     73    </Compile>
     74    <Compile Include="Views\SubscriptionView.cs">
     75      <SubType>UserControl</SubType>
     76    </Compile>
     77    <Compile Include="Views\SubscriptionView.Designer.cs">
     78      <DependentUpon>SubscriptionView.cs</DependentUpon>
    6079    </Compile>
    6180  </ItemGroup>
     
    111130    </ProjectReference>
    112131  </ItemGroup>
    113   <ItemGroup />
     132  <ItemGroup>
     133    <EmbeddedResource Include="Views\AddSubscriptionDialog.resx">
     134      <DependentUpon>AddSubscriptionDialog.cs</DependentUpon>
     135    </EmbeddedResource>
     136    <EmbeddedResource Include="Views\HiveCloudManagerView.resx">
     137      <DependentUpon>HiveCloudManagerView.cs</DependentUpon>
     138    </EmbeddedResource>
     139    <EmbeddedResource Include="Views\SubscriptionView.resx">
     140      <DependentUpon>SubscriptionView.cs</DependentUpon>
     141    </EmbeddedResource>
     142  </ItemGroup>
    114143  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    115144  <PropertyGroup>
  • branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Views/HiveCloudManagerView.Designer.cs

    r7278 r7281  
    2424    /// </summary>
    2525    private void InitializeComponent() {
    26       components = new System.ComponentModel.Container();
     26      this.tabResources = new System.Windows.Forms.TabControl();
     27      this.tabResource = new System.Windows.Forms.TabPage();
     28      this.tabResources.SuspendLayout();
     29      this.SuspendLayout();
     30      //
     31      // tabResources
     32      //
     33      this.tabResources.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     34            | System.Windows.Forms.AnchorStyles.Left)
     35            | System.Windows.Forms.AnchorStyles.Right)));
     36      this.tabResources.Controls.Add(this.tabResource);
     37      this.tabResources.Location = new System.Drawing.Point(3, 3);
     38      this.tabResources.Name = "tabResources";
     39      this.tabResources.SelectedIndex = 0;
     40      this.tabResources.Size = new System.Drawing.Size(739, 540);
     41      this.tabResources.TabIndex = 0;
     42      //
     43      // tabResource
     44      //
     45      this.tabResource.Location = new System.Drawing.Point(4, 22);
     46      this.tabResource.Name = "tabResource";
     47      this.tabResource.Padding = new System.Windows.Forms.Padding(3);
     48      this.tabResource.Size = new System.Drawing.Size(731, 514);
     49      this.tabResource.TabIndex = 0;
     50      this.tabResource.Text = "Resources";
     51      this.tabResource.UseVisualStyleBackColor = true;
     52      //
     53      // HiveCloudManagerView
     54      //
     55      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    2756      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     57      this.Controls.Add(this.tabResources);
     58      this.Name = "HiveCloudManagerView";
     59      this.Size = new System.Drawing.Size(745, 546);
     60      this.tabResources.ResumeLayout(false);
     61      this.ResumeLayout(false);
     62
    2863    }
    2964
    3065    #endregion
     66
     67    private System.Windows.Forms.TabControl tabResources;
     68    private System.Windows.Forms.TabPage tabResource;
    3169  }
    3270}
Note: See TracChangeset for help on using the changeset viewer.