/// /// Copyright (c) 2013-2015 Sensus Metering Systems /// using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace TestBenchFramework { /// /// About dialog /// public partial class AboutDlg : Form { /// /// Contsructor /// /// Language neutral version string /// Regionally formated build date string public AboutDlg(string version, string buildDate) { InitializeComponent(); versionLabel.Text = versionLabel.Text.Replace("_VERSION_", version); buildDateLabel.Text = buildDateLabel.Text.Replace("_BUILD_DATE_", buildDate); } } }