OnTopReplica/OnTopReplica/SidePanels/AboutPanel.cs
Lorenz Cuno Klopfenstein 1ab262d032 Merge
2013-10-16 00:13:14 +02:00

34 lines
823 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 Margins? GlassMargins {
get {
return new Margins(0, 0, 0, labelVersion.Height);
}
}
}
}