Files
2026-05-29 10:07:05 +08:00

41 lines
1.3 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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();
}
}
}