Changeset 11963 for trunk/sources
- Timestamp:
- 02/06/15 18:07:12 (10 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/CreateNewSingleEncodingDialog.Designer.cs
r11961 r11963 20 20 #endregion 21 21 22 namespace HeuristicLab. Problems.Programmable.Views {22 namespace HeuristicLab.Optimization.Views { 23 23 partial class CreateNewSingleEncodingDialog { 24 24 /// <summary> -
trunk/sources/HeuristicLab.Optimization.Views/3.3/CreateNewSingleEncodingDialog.cs
r11961 r11963 26 26 using HeuristicLab.PluginInfrastructure; 27 27 28 namespace HeuristicLab. Problems.Programmable.Views {28 namespace HeuristicLab.Optimization.Views { 29 29 public partial class CreateNewSingleEncodingDialog : Form { 30 30 private HashSet<string> forbiddenNames; -
trunk/sources/HeuristicLab.Optimization.Views/3.3/HeuristicLab.Optimization.Views-3.3.csproj
r11790 r11963 142 142 <DependentUpon>BatchRunView.cs</DependentUpon> 143 143 </Compile> 144 <Compile Include="CreateNewSingleEncodingDialog.cs"> 145 <SubType>Form</SubType> 146 </Compile> 147 <Compile Include="CreateNewSingleEncodingDialog.Designer.cs"> 148 <DependentUpon>CreateNewSingleEncodingDialog.cs</DependentUpon> 149 </Compile> 144 150 <Compile Include="ISingleObjectiveSolutionSimilarityCalculatorView.cs"> 145 151 <SubType>UserControl</SubType> … … 159 165 <Compile Include="ISimilarityCalculatorView.Designer.cs"> 160 166 <DependentUpon>ISimilarityCalculatorView.cs</DependentUpon> 167 </Compile> 168 <Compile Include="MultiEncodingView.cs"> 169 <SubType>UserControl</SubType> 170 </Compile> 171 <Compile Include="MultiEncodingView.Designer.cs"> 172 <DependentUpon>MultiEncodingView.cs</DependentUpon> 161 173 </Compile> 162 174 <Compile Include="Plugin.cs" /> … … 403 415 <Private>False</Private> 404 416 </ProjectReference> 417 </ItemGroup> 418 <ItemGroup> 419 <EmbeddedResource Include="CreateNewSingleEncodingDialog.resx"> 420 <DependentUpon>CreateNewSingleEncodingDialog.cs</DependentUpon> 421 </EmbeddedResource> 405 422 </ItemGroup> 406 423 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
trunk/sources/HeuristicLab.Optimization.Views/3.3/MultiEncodingView.Designer.cs
r11961 r11963 20 20 #endregion 21 21 22 namespace HeuristicLab. Problems.Programmable.Views {22 namespace HeuristicLab.Optimization.Views { 23 23 partial class MultiEncodingView { 24 24 /// <summary> … … 87 87 // encodingsListView 88 88 // 89 this.encodingsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 90 | System.Windows.Forms.AnchorStyles.Left) 89 this.encodingsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 90 | System.Windows.Forms.AnchorStyles.Left) 91 91 | System.Windows.Forms.AnchorStyles.Right))); 92 92 this.encodingsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { … … 157 157 // encodingDetailsGroupBox 158 158 // 159 this.encodingDetailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 160 | System.Windows.Forms.AnchorStyles.Left) 159 this.encodingDetailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 160 | System.Windows.Forms.AnchorStyles.Left) 161 161 | System.Windows.Forms.AnchorStyles.Right))); 162 162 this.encodingDetailsGroupBox.Controls.Add(this.encodingDetailViewHost); … … 184 184 // encodingsGroupBox 185 185 // 186 this.encodingsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 187 | System.Windows.Forms.AnchorStyles.Left) 186 this.encodingsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 187 | System.Windows.Forms.AnchorStyles.Left) 188 188 | System.Windows.Forms.AnchorStyles.Right))); 189 189 this.encodingsGroupBox.Controls.Add(this.splitContainer); … … 197 197 // tabControl 198 198 // 199 this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 200 | System.Windows.Forms.AnchorStyles.Left) 199 this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 200 | System.Windows.Forms.AnchorStyles.Left) 201 201 | System.Windows.Forms.AnchorStyles.Right))); 202 202 this.tabControl.Controls.Add(this.encodingsTabPage); -
trunk/sources/HeuristicLab.Optimization.Views/3.3/MultiEncodingView.cs
r11961 r11963 28 28 using HeuristicLab.Core.Views; 29 29 using HeuristicLab.MainForm; 30 using HeuristicLab.Optimization;31 30 32 namespace HeuristicLab. Problems.Programmable.Views {31 namespace HeuristicLab.Optimization.Views { 33 32 [View("MultiEncoding View")] 34 33 [Content(typeof(MultiEncoding), IsDefaultView = true)] -
trunk/sources/HeuristicLab.Problems.Programmable.Views/3.3/HeuristicLab.Problems.Programmable.Views-3.3.csproj
r11961 r11963 87 87 </ItemGroup> 88 88 <ItemGroup> 89 <Compile Include="MultiEncodingView.cs">90 <SubType>UserControl</SubType>91 </Compile>92 <Compile Include="MultiEncodingView.Designer.cs">93 <DependentUpon>MultiEncodingView.cs</DependentUpon>94 </Compile>95 <Compile Include="CreateNewSingleEncodingDialog.cs">96 <SubType>Form</SubType>97 </Compile>98 <Compile Include="CreateNewSingleEncodingDialog.Designer.cs">99 <DependentUpon>CreateNewSingleEncodingDialog.cs</DependentUpon>100 </Compile>101 89 <Compile Include="Plugin.cs" /> 102 90 <Compile Include="ProblemDefinitionScriptView.cs"> … … 124 112 <None Include="Plugin.cs.frame" /> 125 113 <None Include="Properties\AssemblyInfo.cs.frame" /> 126 </ItemGroup>127 <ItemGroup>128 <EmbeddedResource Include="CreateNewSingleEncodingDialog.resx">129 <DependentUpon>CreateNewSingleEncodingDialog.cs</DependentUpon>130 </EmbeddedResource>131 114 </ItemGroup> 132 115 <ItemGroup>
Note: See TracChangeset
for help on using the changeset viewer.