OnTopReplica/OnTopReplica/SidePanels/AboutPanel.cs

34 lines
823 B
C#
Raw Normal View History

2013-10-16 11:13:14 +13:00
using OnTopReplica.Properties;
using System;
2013-05-04 04:16:42 +12:00
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);
}
}
}
}