comparison FrmAbout.cs @ 85:0bb9f40d44eb

Re #88: Complete initial WinForms UI * Add basic initial "about" box * Translations (below) Re #179: Make sure that translations are used throughout UI * Make all controls translatable * Supply translations for all controls Re #204: Use new limits in WinForms UI * Warn the user and cap the number if we try to go out of range for equipment
author IBBoard <dev@ibboard.co.uk>
date Sat, 31 Oct 2009 20:54:42 +0000
parents
children
comparison
equal deleted inserted replaced
84:1e85a0687e4d 85:0bb9f40d44eb
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Data;
5 using System.Drawing;
6 using System.Text;
7 using System.Windows.Forms;
8 using IBBoard.Lang;
9 using IBBoard.Windows.Forms;
10 using IBBoard.Windows.Forms.I18N;
11
12 namespace IBBoard.WarFoundry.GUI.WinForms
13 {
14 public partial class FrmAbout : IBBForm
15 {
16 public FrmAbout()
17 {
18 InitializeComponent();
19 ControlTranslator.TranslateControl(this);
20 lblVersion.Text = Translation.GetTranslation("lblVersion", "Version: {0}", FrmMain.VERSION);
21 }
22 }
23 }