OnTopReplica/OnTopReplica/SidePanels/AboutPanel.cs
2017-11-29 23:16:52 +01:00

34 lines
822 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);
}
}
}
}