hytos / DTI_PID / APIDConverter / Form / APIDConverter.cs @ 5598104a
이력 | 보기 | 이력해설 | 다운로드 (609 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.ComponentModel; |
4 |
using System.Data; |
5 |
using System.Drawing; |
6 |
using System.Linq; |
7 |
using System.Text; |
8 |
using System.Threading.Tasks; |
9 |
using System.Windows.Forms; |
10 |
|
11 |
namespace AVEVA.PID.CustomizationUtility |
12 |
{ |
13 |
public partial class APIDConverter : DevExpress.XtraBars.Ribbon.RibbonForm |
14 |
{ |
15 |
public APIDConverter() |
16 |
{ |
17 |
InitializeComponent(); |
18 |
} |
19 |
|
20 |
private void button1_Click(object sender, EventArgs e) |
21 |
{ |
22 |
APIDConverter aPID = new APIDConverter(); |
23 |
aPID.ShowDialog(); |
24 |
} |
25 |
} |
26 |
} |