28 lines
818 B
C#
28 lines
818 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace TestBenchFramework
|
|
{
|
|
/// <summary>
|
|
/// About dialog
|
|
/// </summary>
|
|
public partial class AboutDlg : Form
|
|
{
|
|
/// <summary>
|
|
/// Contsructor
|
|
/// </summary>
|
|
/// <param name="version">Language neutral version string</param>
|
|
/// <param name="buildDate">Regionally formated build date string</param>
|
|
public AboutDlg(string version, string buildDate)
|
|
{
|
|
InitializeComponent();
|
|
versionLabel.Text = versionLabel.Text.Replace("_VERSION_", version);
|
|
buildDateLabel.Text = buildDateLabel.Text.Replace("_BUILD_DATE_", buildDate);
|
|
}
|
|
}
|
|
} |