OnTopReplica/src/OnTopReplica/SidePanels/AboutPanel.cs
Lorenz Cuno Klopfenstein a7774b6677 Code re-org
2018-04-10 18:52:40 +02:00

34 lines
789 B
C#

using OnTopReplica.Properties;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using WindowsFormsAero.Dwm;
namespace OnTopReplica.SidePanels {
partial class AboutPanel : SidePanel {
public AboutPanel() {
InitializeComponent();
//Display version number
labelVersion.Text = string.Format(Strings.AboutVersion, Application.ProductVersion);
}
public override string Title {
get {
return Strings.AboutTitle;
}
}
public override Padding GlassMargins {
get {
return new Padding(0, 0, 0, labelVersion.Height);
}
}
}
}