41 lines
1.3 KiB
C#
41 lines
1.3 KiB
C#
using System;
|
||
using System.Windows.Forms;
|
||
|
||
namespace DataMirrorTools
|
||
{
|
||
public partial class DataMirrorToolsVersionsInformation : Form
|
||
{
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
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";
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
private void Label_AboutMES_Click(object sender, EventArgs e)
|
||
{
|
||
System.Diagnostics.Process.Start("http://www.meswork.com/");
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
private void Button_OK_Click(object sender, EventArgs e)
|
||
{
|
||
this.Close();
|
||
}
|
||
}
|
||
}
|