///-------------------------------------------------------------------------- /// 文 件 名:FrmAboutShoutPoll.cs /// 功能描述:关于(OEM) /// /// /// 创建标识:杨斌 2012-05-15 ///-------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace SunVoteARSPPT { public partial class FrmAboutShoutPoll : Form { public FrmAboutShoutPoll() { InitializeComponent(); //多语言初始化控件文本 GlobalInfo.SysLanguage.SetLanguage("FrmAboutShoutPoll", this); lblVerNoInfo.Text = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); // lblSysVersion.Text = lblSysVersion.Text + " " + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();//去掉Beta,杨斌 2011-09-28 } private void FrmAboutUsOEM_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Escape)//杨斌 2012-03-13 this.Close(); } private void FrmAboutUsOEM_Load(object sender, EventArgs e) { } private void lblSiteInfo_Click(object sender, EventArgs e) { try { System.Diagnostics.Process.Start(((Label)sender).Text); } catch { } } private void lblAddressInfo_Click(object sender, EventArgs e) { } private void lblCopyRight_Click(object sender, EventArgs e) { } private void lblSite_Click(object sender, EventArgs e) { } private void lblCSite_Click(object sender, EventArgs e) { } private void lblESite_Click(object sender, EventArgs e) { } private void lblEmailInfo_Click(object sender, EventArgs e) { System.Diagnostics.Process.Start("mailto:" + ((Label)sender).Text); } } }