using System;
using System.Windows.Forms;
namespace DataMirrorTools
{
public partial class DataMirrorToolsVersionsInformation : Form
{
///
///
///
public DataMirrorToolsVersionsInformation()
{
InitializeComponent();
// label_SoftWareName.Text = "Data Mirror Tools";
label_SoftWareName.Text = "MesWork Data Factory";
label_Version.Text = ModelBasic.WriteVersion.ProgramVersion;
label_Copyright.Text = "版权所有 © 2022 Meswork Corporation。 保留所有权利。";
label_CompanyInfo.Text = "大连迈思信息技术有限公司 电话:0411-81761316";
label_Email.Text = "电子邮箱: inf@meswork.com";
}
///
///
///
///
///
private void Label_AboutMES_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("http://www.meswork.com/");
}
///
///
///
///
///
private void Button_OK_Click(object sender, EventArgs e)
{
this.Close();
}
}
}