Mercurial > repos > IBDev-IBBoard.WarFoundry.GUI.WinForms
view FrmAbout.cs @ 220:e10688b29092 xml-export-ui
Fixed .Net 4.0 dependency
author | Dan.Kulinski@dank-laptop.Global.Local |
---|---|
date | Thu, 25 Aug 2011 12:59:26 -0600 |
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); } } }