Mercurial > repos > IBDev-IBBoard.WarFoundry.GUI.WinForms
view FrmAbout.cs @ 203:b4e428dcfcb6 default-army-name
Re #153: Default name for armies
* Have a fight between VS.Net versions over how to reference projects (may need to update from 2K3 but still target .Net 2)
* Use property of race object and clean up comments
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 07 Sep 2010 20:03:52 +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); } } }