Mercurial > repos > IBBoard.WarFoundry.GUI.WinForms
view FrmAbout.cs @ 153:fcd90498d9a2
Re #269: Handle multiple stat lines
* Improve rendering of stats
* Fix column widths
* Set width and height based on content
Also:
* Make FrmUnit title contain unit type as we're using it more now
Still needs more testing and fixing
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Wed, 26 May 2010 20:05:20 +0000 |
parents | 0bb9f40d44eb |
children |
line wrap: on
line source
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using IBBoard.Lang; using IBBoard.Windows.Forms; using IBBoard.Windows.Forms.I18N; namespace IBBoard.WarFoundry.GUI.WinForms { public partial class FrmAbout : IBBForm { public FrmAbout() { InitializeComponent(); ControlTranslator.TranslateControl(this); lblVersion.Text = Translation.GetTranslation("lblVersion", "Version: {0}", FrmMain.VERSION); } } }