Changeset 7281
- Timestamp:
- 01/05/12 17:06:16 (13 years ago)
- 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 51 51 <Compile Include="CloudManagerClient.cs" /> 52 52 <Compile Include="MenuItems\CloudManagerMenuItem.cs" /> 53 <Compile Include="Model\Subscription.cs" /> 53 54 <Compile Include="Plugin.cs" /> 54 55 <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> 55 68 <Compile Include="Views\HiveCloudManagerView.cs"> 56 69 <SubType>UserControl</SubType> … … 58 71 <Compile Include="Views\HiveCloudManagerView.Designer.cs"> 59 72 <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> 60 79 </Compile> 61 80 </ItemGroup> … … 111 130 </ProjectReference> 112 131 </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> 114 143 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 115 144 <PropertyGroup> -
branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Views/HiveCloudManagerView.Designer.cs
r7278 r7281 24 24 /// </summary> 25 25 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); 27 56 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 28 63 } 29 64 30 65 #endregion 66 67 private System.Windows.Forms.TabControl tabResources; 68 private System.Windows.Forms.TabPage tabResource; 31 69 } 32 70 }
Note: See TracChangeset
for help on using the changeset viewer.