add project line name

This commit is contained in:
Dimitrij
2024-08-28 11:29:40 +01:00
parent cf0ef6d9d0
commit bc5e2b9437
4 changed files with 150 additions and 1148 deletions

View File

@@ -5,158 +5,156 @@
#region Windows Form Designer generated code #region Windows Form Designer generated code
private void InitializeComponent() private void InitializeComponent()
{ {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAbout)); pbLogo = new System.Windows.Forms.PictureBox();
this.pbLogo = new System.Windows.Forms.PictureBox(); pnlBottom = new System.Windows.Forms.Panel();
this.pnlBottom = new System.Windows.Forms.Panel(); llCredits = new System.Windows.Forms.LinkLabel();
this.llCredits = new System.Windows.Forms.LinkLabel(); llChangelog = new System.Windows.Forms.LinkLabel();
this.llChangelog = new System.Windows.Forms.LinkLabel(); llLicense = new System.Windows.Forms.LinkLabel();
this.llLicense = new System.Windows.Forms.LinkLabel(); lblTitle = new Controls.MrngLabel();
this.lblTitle = new mRemoteNG.UI.Controls.MrngLabel(); lblVersion = new Controls.MrngLabel();
this.lblVersion = new mRemoteNG.UI.Controls.MrngLabel(); lblLicense = new Controls.MrngLabel();
this.lblLicense = new mRemoteNG.UI.Controls.MrngLabel(); lblCopyright = new Controls.MrngLabel();
this.lblCopyright = new mRemoteNG.UI.Controls.MrngLabel(); ((System.ComponentModel.ISupportInitialize)pbLogo).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pbLogo)).BeginInit(); pnlBottom.SuspendLayout();
this.pnlBottom.SuspendLayout(); SuspendLayout();
this.SuspendLayout();
// //
// pbLogo // pbLogo
// //
this.pbLogo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(58)))), ((int)(((byte)(64))))); pbLogo.BackColor = System.Drawing.Color.FromArgb(52, 58, 64);
this.pbLogo.BackgroundImage = global::mRemoteNG.Properties.Resources.Header_dark; pbLogo.BackgroundImage = Properties.Resources.Header_dark;
this.pbLogo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; pbLogo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.pbLogo.Dock = System.Windows.Forms.DockStyle.Top; pbLogo.Dock = System.Windows.Forms.DockStyle.Top;
this.pbLogo.Location = new System.Drawing.Point(0, 0); pbLogo.Location = new System.Drawing.Point(0, 0);
this.pbLogo.Name = "pbLogo"; pbLogo.Name = "pbLogo";
this.pbLogo.Size = new System.Drawing.Size(584, 120); pbLogo.Size = new System.Drawing.Size(584, 120);
this.pbLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; pbLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.pbLogo.TabIndex = 1; pbLogo.TabIndex = 1;
this.pbLogo.TabStop = false; pbLogo.TabStop = false;
// //
// pnlBottom // pnlBottom
// //
this.pnlBottom.BackColor = System.Drawing.SystemColors.Control; pnlBottom.BackColor = System.Drawing.SystemColors.Control;
this.pnlBottom.Controls.Add(this.llCredits); pnlBottom.Controls.Add(llCredits);
this.pnlBottom.Controls.Add(this.llChangelog); pnlBottom.Controls.Add(llChangelog);
this.pnlBottom.Controls.Add(this.llLicense); pnlBottom.Controls.Add(llLicense);
this.pnlBottom.Controls.Add(this.lblTitle); pnlBottom.Controls.Add(lblTitle);
this.pnlBottom.Controls.Add(this.lblVersion); pnlBottom.Controls.Add(lblVersion);
this.pnlBottom.Controls.Add(this.lblLicense); pnlBottom.Controls.Add(lblLicense);
this.pnlBottom.Controls.Add(this.lblCopyright); pnlBottom.Controls.Add(lblCopyright);
this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Fill; pnlBottom.Dock = System.Windows.Forms.DockStyle.Fill;
this.pnlBottom.ForeColor = System.Drawing.SystemColors.ControlText; pnlBottom.ForeColor = System.Drawing.SystemColors.ControlText;
this.pnlBottom.Location = new System.Drawing.Point(0, 120); pnlBottom.Location = new System.Drawing.Point(0, 120);
this.pnlBottom.Name = "pnlBottom"; pnlBottom.Name = "pnlBottom";
this.pnlBottom.Size = new System.Drawing.Size(584, 161); pnlBottom.Size = new System.Drawing.Size(584, 161);
this.pnlBottom.TabIndex = 1; pnlBottom.TabIndex = 1;
// //
// llCredits // llCredits
// //
this.llCredits.AutoSize = true; llCredits.AutoSize = true;
this.llCredits.Font = new System.Drawing.Font("Segoe UI", 9.75F); llCredits.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.llCredits.Location = new System.Drawing.Point(5, 134); llCredits.Location = new System.Drawing.Point(5, 134);
this.llCredits.Name = "llCredits"; llCredits.Name = "llCredits";
this.llCredits.Size = new System.Drawing.Size(49, 17); llCredits.Size = new System.Drawing.Size(49, 17);
this.llCredits.TabIndex = 10; llCredits.TabIndex = 10;
this.llCredits.TabStop = true; llCredits.TabStop = true;
this.llCredits.Text = "Credits"; llCredits.Text = "Credits";
this.llCredits.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llCredits_LinkClicked); llCredits.LinkClicked += llCredits_LinkClicked;
// //
// llChangelog // llChangelog
// //
this.llChangelog.AutoSize = true; llChangelog.AutoSize = true;
this.llChangelog.Font = new System.Drawing.Font("Segoe UI", 9.75F); llChangelog.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.llChangelog.Location = new System.Drawing.Point(5, 117); llChangelog.Location = new System.Drawing.Point(5, 117);
this.llChangelog.Name = "llChangelog"; llChangelog.Name = "llChangelog";
this.llChangelog.Size = new System.Drawing.Size(71, 17); llChangelog.Size = new System.Drawing.Size(71, 17);
this.llChangelog.TabIndex = 9; llChangelog.TabIndex = 9;
this.llChangelog.TabStop = true; llChangelog.TabStop = true;
this.llChangelog.Text = "Changelog"; llChangelog.Text = "Changelog";
this.llChangelog.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llChangelog_LinkClicked); llChangelog.LinkClicked += llChangelog_LinkClicked;
// //
// llLicense // llLicense
// //
this.llLicense.AutoSize = true; llLicense.AutoSize = true;
this.llLicense.Font = new System.Drawing.Font("Segoe UI", 9.75F); llLicense.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.llLicense.Location = new System.Drawing.Point(5, 100); llLicense.Location = new System.Drawing.Point(5, 100);
this.llLicense.Name = "llLicense"; llLicense.Name = "llLicense";
this.llLicense.Size = new System.Drawing.Size(50, 17); llLicense.Size = new System.Drawing.Size(50, 17);
this.llLicense.TabIndex = 8; llLicense.TabIndex = 8;
this.llLicense.TabStop = true; llLicense.TabStop = true;
this.llLicense.Text = "License"; llLicense.Text = "License";
this.llLicense.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llLicense_LinkClicked); llLicense.LinkClicked += llLicense_LinkClicked;
// //
// lblTitle // lblTitle
// //
this.lblTitle.AutoSize = true; lblTitle.AutoSize = true;
this.lblTitle.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); lblTitle.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.lblTitle.ForeColor = System.Drawing.SystemColors.ControlText; lblTitle.ForeColor = System.Drawing.SystemColors.ControlText;
this.lblTitle.Location = new System.Drawing.Point(6, 3); lblTitle.Location = new System.Drawing.Point(6, 3);
this.lblTitle.Name = "lblTitle"; lblTitle.Name = "lblTitle";
this.lblTitle.Size = new System.Drawing.Size(106, 27); lblTitle.Size = new System.Drawing.Size(101, 27);
this.lblTitle.TabIndex = 0; lblTitle.TabIndex = 0;
this.lblTitle.Text = "mRemoteNG"; lblTitle.Text = "Libro ultimo";
this.lblTitle.UseCompatibleTextRendering = true; lblTitle.UseCompatibleTextRendering = true;
// //
// lblVersion // lblVersion
// //
this.lblVersion.AutoSize = true; lblVersion.AutoSize = true;
this.lblVersion.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); lblVersion.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblVersion.ForeColor = System.Drawing.SystemColors.ControlText; lblVersion.ForeColor = System.Drawing.SystemColors.ControlText;
this.lblVersion.Location = new System.Drawing.Point(6, 30); lblVersion.Location = new System.Drawing.Point(6, 30);
this.lblVersion.Name = "lblVersion"; lblVersion.Name = "lblVersion";
this.lblVersion.Size = new System.Drawing.Size(49, 22); lblVersion.Size = new System.Drawing.Size(49, 22);
this.lblVersion.TabIndex = 1; lblVersion.TabIndex = 1;
this.lblVersion.Text = "Version"; lblVersion.Text = "Version";
this.lblVersion.UseCompatibleTextRendering = true; lblVersion.UseCompatibleTextRendering = true;
// //
// lblLicense // lblLicense
// //
this.lblLicense.AutoSize = true; lblLicense.AutoSize = true;
this.lblLicense.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); lblLicense.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblLicense.ForeColor = System.Drawing.SystemColors.ControlText; lblLicense.ForeColor = System.Drawing.SystemColors.ControlText;
this.lblLicense.Location = new System.Drawing.Point(6, 74); lblLicense.Location = new System.Drawing.Point(6, 74);
this.lblLicense.Name = "lblLicense"; lblLicense.Name = "lblLicense";
this.lblLicense.Size = new System.Drawing.Size(48, 22); lblLicense.Size = new System.Drawing.Size(48, 22);
this.lblLicense.TabIndex = 5; lblLicense.TabIndex = 5;
this.lblLicense.Text = "License"; lblLicense.Text = "License";
this.lblLicense.UseCompatibleTextRendering = true; lblLicense.UseCompatibleTextRendering = true;
// //
// lblCopyright // lblCopyright
// //
this.lblCopyright.AutoSize = true; lblCopyright.AutoSize = true;
this.lblCopyright.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); lblCopyright.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblCopyright.ForeColor = System.Drawing.SystemColors.ControlText; lblCopyright.ForeColor = System.Drawing.SystemColors.ControlText;
this.lblCopyright.Location = new System.Drawing.Point(6, 52); lblCopyright.Location = new System.Drawing.Point(6, 52);
this.lblCopyright.Name = "lblCopyright"; lblCopyright.Name = "lblCopyright";
this.lblCopyright.Size = new System.Drawing.Size(63, 22); lblCopyright.Size = new System.Drawing.Size(63, 22);
this.lblCopyright.TabIndex = 2; lblCopyright.TabIndex = 2;
this.lblCopyright.Text = "Copyright"; lblCopyright.Text = "Copyright";
this.lblCopyright.UseCompatibleTextRendering = true; lblCopyright.UseCompatibleTextRendering = true;
// //
// frmAbout // frmAbout
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.SystemColors.Control; BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(584, 281); ClientSize = new System.Drawing.Size(584, 281);
this.Controls.Add(this.pnlBottom); Controls.Add(pnlBottom);
this.Controls.Add(this.pbLogo); Controls.Add(pbLogo);
this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.ForeColor = System.Drawing.SystemColors.ControlText; ForeColor = System.Drawing.SystemColors.ControlText;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false; MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(20000, 10000); MaximumSize = new System.Drawing.Size(20000, 10000);
this.MinimizeBox = false; MinimizeBox = false;
this.Name = "frmAbout"; Name = "frmAbout";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "About"; Text = "About";
this.TopMost = true; TopMost = true;
((System.ComponentModel.ISupportInitialize)(this.pbLogo)).EndInit(); ((System.ComponentModel.ISupportInitialize)pbLogo).EndInit();
this.pnlBottom.ResumeLayout(false); pnlBottom.ResumeLayout(false);
this.pnlBottom.PerformLayout(); pnlBottom.PerformLayout();
this.ResumeLayout(false); ResumeLayout(false);
this.PerformLayout(); PerformLayout();
} }
#endregion #endregion

File diff suppressed because it is too large Load Diff

View File

@@ -16,7 +16,7 @@
<Label Name="lblLogoPartA" Content="m" HorizontalAlignment="Left" VerticalAlignment="Top" Height="59" Margin="104,0,0,0" Width="40" FontFamily="HandelGotDBol" FontSize="40" Foreground="#5289F9"/> <Label Name="lblLogoPartA" Content="m" HorizontalAlignment="Left" VerticalAlignment="Top" Height="59" Margin="104,0,0,0" Width="40" FontFamily="HandelGotDBol" FontSize="40" Foreground="#5289F9"/>
<Label Name="lblLogoPartB" Content="RemoteNG" HorizontalAlignment="Left" VerticalAlignment="Top" Height="59" Margin="134,0,0,0" Width="210" FontFamily="HandelGotDBol" FontSize="40" Foreground="#E8EBEE" RenderTransformOrigin="0.548,0.525"/> <Label Name="lblLogoPartB" Content="RemoteNG" HorizontalAlignment="Left" VerticalAlignment="Top" Height="59" Margin="134,0,0,0" Width="210" FontFamily="HandelGotDBol" FontSize="40" Foreground="#E8EBEE" RenderTransformOrigin="0.548,0.525"/>
<Label Name="lblLogoPartC" Content="Multi-Remote Next Generation Connection Manager" HorizontalAlignment="Center" VerticalAlignment="Top" Height="30" Margin="0,83,0,0" Width="410" FontFamily="Segoe" FontSize="16" Foreground="#E8EBEE" FontWeight="Bold"/> <Label Name="lblLogoPartC" Content="Multi-Remote Next Generation Connection Manager" HorizontalAlignment="Center" VerticalAlignment="Top" Height="30" Margin="0,83,0,0" Width="410" FontFamily="Segoe" FontSize="16" Foreground="#E8EBEE" FontWeight="Bold"/>
<Label Name="lblLogoPartD" Content="v.?.??.?" HorizontalAlignment="Center" VerticalAlignment="Top" Height="28" Margin="0,50,0,0" Width="216" FontFamily="Segoe" FontSize="16" Foreground="#E8EBEE"/> <Label Name="lblLogoPartD" Content="v.?.??.?" HorizontalAlignment="Center" VerticalAlignment="Top" Height="28" Margin="0,50,0,0" Width="442" FontFamily="Segoe" FontSize="16" Foreground="#E8EBEE"/>
</Grid> </Grid>
</Border> </Border>
</Window> </Window>

View File

@@ -15,7 +15,8 @@ namespace mRemoteNG.UI.Forms
{ {
InitializeComponent(); InitializeComponent();
LoadFont(); LoadFont();
lblLogoPartD.Content = $@"v. {GeneralAppInfo.ApplicationVersion}"; lblLogoPartD.HorizontalContentAlignment = System.Windows.HorizontalAlignment.Center;
lblLogoPartD.Content = $@"v. {GeneralAppInfo.ApplicationVersion} - 'Libro Ultimo'";
} }
public static FrmSplashScreenNew GetInstance() public static FrmSplashScreenNew GetInstance()
{ {