0
|
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.Forge.WinForms
|
|
13 {
|
|
14 public partial class FrmAbout : IBBoard.Windows.Forms.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 }
|