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
| #region
|
| using System;
|
| #endregion
|
| namespace CSFrameworkV5.Library.CommonForms
| {
| public partial class frmAbout : frmBase
| {
| public frmAbout()
| {
| InitializeComponent();
| }
|
| private void btnClose_Click(object sender, EventArgs e)
| {
| Close();
| }
|
| private void frmAbout_Load(object sender, EventArgs e)
| {
| SetLanguage();
| }
| }
| }
|
|