Changeset 13340
- Timestamp:
- 11/23/15 17:16:35 (9 years ago)
- Location:
- branches/RefactorPluginInfrastructure-2522
- Files:
-
- 2 added
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RefactorPluginInfrastructure-2522/HeuristicLab.PluginInfrastructure.UI
- Property svn:ignore
-
old new 1 1 bin 2 2 obj 3 *.user
-
- Property svn:ignore
-
branches/RefactorPluginInfrastructure-2522/HeuristicLab.PluginInfrastructure.UI/HeuristicLab.PluginInfrastructure.UI-4.0.csproj
r13338 r13340 131 131 <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project> 132 132 <Name>HeuristicLab.PluginInfrastructure-3.3</Name> 133 <Private>False</Private> 133 134 </ProjectReference> 134 135 </ItemGroup> … … 138 139 <ItemGroup> 139 140 <None Include="HeuristicLab.snk" /> 141 <None Include="Properties\AssemblyInfo.cs.frame" /> 140 142 </ItemGroup> 141 143 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 144 <PropertyGroup> 145 <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 146 set ProjectDir=$(ProjectDir) 147 set SolutionDir=$(SolutionDir) 148 set Outdir=$(Outdir) 149 150 call PreBuildEvent.cmd</PreBuildEvent> 151 </PropertyGroup> 142 152 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 143 153 Other similar extension points exist, see Microsoft.Common.targets. -
branches/RefactorPluginInfrastructure-2522/HeuristicLab.PluginInfrastructure.UI/SplashScreen.Designer.cs
r13338 r13340 58 58 this.versionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 59 59 this.versionLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F); 60 this.versionLabel.Location = new System.Drawing.Point( 436, 147);60 this.versionLabel.Location = new System.Drawing.Point(320, 147); 61 61 this.versionLabel.Name = "versionLabel"; 62 this.versionLabel.Size = new System.Drawing.Size( 150, 9);62 this.versionLabel.Size = new System.Drawing.Size(266, 10); 63 63 this.versionLabel.TabIndex = 1; 64 64 this.versionLabel.Text = "Version "; … … 67 67 // infoLabel 68 68 // 69 this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 70 69 this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 70 | System.Windows.Forms.AnchorStyles.Right))); 71 71 this.infoLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 72 72 this.infoLabel.ForeColor = System.Drawing.Color.DarkOrange; … … 91 91 // pictureBox 92 92 // 93 this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 94 95 this.pictureBox.Image = Resources.HeuristicLabBanner;93 this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 94 | System.Windows.Forms.AnchorStyles.Right))); 95 this.pictureBox.Image = global::HeuristicLab.PluginInfrastructure.UI.Resources.HeuristicLabBanner; 96 96 this.pictureBox.Location = new System.Drawing.Point(0, 0); 97 97 this.pictureBox.Name = "pictureBox"; … … 103 103 // SplashScreen 104 104 // 105 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);106 105 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; 107 106 this.BackColor = System.Drawing.Color.White; … … 113 112 this.Controls.Add(this.infoLabel); 114 113 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; 115 this.Icon = Resources.HeuristicLab;114 this.Icon = global::HeuristicLab.PluginInfrastructure.UI.Resources.HeuristicLab; 116 115 this.MaximizeBox = false; 117 116 this.MinimizeBox = false; -
branches/RefactorPluginInfrastructure-2522/HeuristicLab.PluginInfrastructure.UI/SplashScreen.cs
r13338 r13340 44 44 RegisterPluginManagerEventHandlers(); 45 45 46 versionLabel.Text = "Version " + AssemblyExtensions.GetFileVersion(GetType().Assembly);46 versionLabel.Text = "Version " + typeof(PluginManager).Assembly.GetFileVersion() + " Windischgarsten (11/2015)"; 47 47 infoLabel.Text = ""; 48 48 49 var attr = (AssemblyCopyrightAttribute)t his.GetType().Assembly.GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false).Single();49 var attr = (AssemblyCopyrightAttribute)typeof(PluginManager).Assembly.GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false).Single(); 50 50 copyrightLabel.Text = "Copyright " + attr.Copyright; 51 51 -
branches/RefactorPluginInfrastructure-2522/HeuristicLab/3.3/HeuristicLab-3.3.csproj
r13338 r13340 191 191 <Project>{7af3c7b6-8ba5-44f3-8d5b-2bf7a23cf12d}</Project> 192 192 <Name>HeuristicLab.PluginInfrastructure.UI-4.0</Name> 193 <Private>False</Private> 193 194 </ProjectReference> 194 195 </ItemGroup>
Note: See TracChangeset
for help on using the changeset viewer.