Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/12 16:38:31 (12 years ago)
Author:
spimming
Message:

#1680: New dialog to delete deployments

Location:
branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3
Files:
2 added
2 edited

Legend:

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

    r7577 r7598  
    105105      <DependentUpon>CloudResourcesView.cs</DependentUpon>
    106106    </Compile>
     107    <Compile Include="Views\DeleteDeploymentView.cs">
     108      <SubType>Form</SubType>
     109    </Compile>
     110    <Compile Include="Views\DeleteDeploymentView.Designer.cs">
     111      <DependentUpon>DeleteDeploymentView.cs</DependentUpon>
     112    </Compile>
    107113    <Compile Include="Views\DeploymentView.cs">
    108114      <SubType>UserControl</SubType>
     
    216222    <EmbeddedResource Include="Views\CloudResourcesView.resx">
    217223      <DependentUpon>CloudResourcesView.cs</DependentUpon>
     224    </EmbeddedResource>
     225    <EmbeddedResource Include="Views\DeleteDeploymentView.resx">
     226      <DependentUpon>DeleteDeploymentView.cs</DependentUpon>
    218227    </EmbeddedResource>
    219228    <EmbeddedResource Include="Views\DeploymentView.resx">
  • branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Views/CloudResourcesView.cs

    r7441 r7598  
    329329          HostedService hs = (HostedService)objParent;
    330330          Deployment dep = (Deployment)obj;
    331           //call async
    332           CloudManagerClient.Instance.Delete(dep, hs);
     331          using (var form = new DeleteDeploymentView(dep, hs)) {
     332            form.ShowDialog();
     333          }
    333334        }
    334335      }
Note: See TracChangeset for help on using the changeset viewer.