Mercurial > repos > WarFoundryForge
view FrmAbout.cs @ 13:372f921c20fc
Mock up of the stat line tab
Select a stat line to view
Make Default changes default stat line
author | Tsudico |
---|---|
date | Sat, 18 Dec 2010 13:20:18 -0600 |
parents | 91b5550eff31 |
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.Forge.WinForms { public partial class FrmAbout : IBBoard.Windows.Forms.IBBForm { public FrmAbout() { InitializeComponent(); ControlTranslator.TranslateControl(this); lblVersion.Text = Translation.GetTranslation("lblVersion", "Version: {0}", FrmMain.VERSION); } } }