123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace FPER {
- public partial class frmSettingFiles : Form {
- public frmSettingFiles() {
- InitializeComponent();
- }
- private void btnWinClose_Click(object sender, EventArgs e) {
- }
- private void btnWinClose_Click_1(object sender, EventArgs e) {
- Close();
- }
- public void frmSettingFiles_Load(object sender, EventArgs e) {
- // 가운데 위치로
- //1078, 824
- int Left = (1078 - this.Width) / 2;
- int Top = (824 - this.Height) / 2;
- Point loc = new Point(Left, Top);
- this.Location = loc;
- }
- }
- public class SettingData_IN_Group {
- }
- public class SettingData_OUT_Group {
- }
- public class Data_Group {
- String GroupID;
- String GroupName;
- String DeviceCode;
- }
- public class SettingData_MAP {
- }
- public class Data_MAP {
- String MAPID;
- String MAPName;
- String InCode;
- String OutCode;
- bool InType;
- bool OutType;
- int TBoardNo;
- int LoopNo;
- int RepeaterNo;
- public bool CheckInType(String incode) {
- return false;
- }
- public bool CheckOutType(String outcode) {
- return false;
- }
- public int GetTboardNo(String code) {
- return 0;
- }
- public int GetLoopNo(String code) {
- return 0;
- }
- public int GetRepeaterNo(String code) {
- return 0;
- }
- }
- public class SettingData_Line {
- int TBoardNo;
- int LoopNo;
- private SettingData_Repeater[] Repeater = new SettingData_Repeater[127];
- }
- public class SettingData_Repeater {
- int RepeaterNo;
- private SettingData_Device[] InDevice = new SettingData_Device[4];
- private SettingData_Device[] OutDevice = new SettingData_Device[4];
- }
- public class SettingData_Device {
- }
- }
|