20c0108c
wutaian
xx
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
///--------------------------------------------------------------------------
/// 文 件 名: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);
}
}
}
|