using DllPubInfo; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace EapMainFrame { public partial class MainFrame : Form { public MainFrame() { InitializeComponent(); } private void button9_Click(object sender, EventArgs e) { //Guid tt = Guid.Empty; DllEapUi.MacModelQuery temp = new DllEapUi.MacModelQuery(); temp.Show(); } private void button1_Click(object sender, EventArgs e) { DllEapUi.SecQuery temp = new DllEapUi.SecQuery(); temp.Show(); } private void button2_Click(object sender, EventArgs e) { //DllMes.JobbookingMerge temp = new DllMes.JobbookingMerge(); //temp.Show(); } private void button3_Click(object sender, EventArgs e) { //DllConfigSec.EventReportMstQuery temp = new DllConfigSec.EventReportMstQuery(); //temp.Show(); } private void button4_Click(object sender, EventArgs e) { DllEapUi.ReportMstQuery temp = new DllEapUi.ReportMstQuery(); temp.Show(); } private void button5_Click(object sender, EventArgs e) { DllEapUi.MacOrderQuery temp = new DllEapUi.MacOrderQuery(); temp.Show(); } private void button6_Click(object sender, EventArgs e) { DllEapUi.MachineQuery temp = new DllEapUi.MachineQuery(); temp.Show(); } private void button7_Click(object sender, EventArgs e) { DllEapUi.OrderMstQuery temp = new DllEapUi.OrderMstQuery(); temp.Show(); } tempclass ttclass = new tempclass(); private void button8_Click(object sender, EventArgs e) { //DllConfigSec.SecMstQuery temp = new DllConfigSec.SecMstQuery(); //temp.Show(); } //private JobBooking CallTrackIn() //{ // try // { // JobBooking tempds = new JobBooking(); // JobBooking reds = PubInfo.CallFunction("DllMesAcc.MesServer", "TrackInTest", tempds); // if (reds == null) // return null; // return reds; // } // catch (Exception e) // { // MessageBox.Show(e.Message); // return null; // } //} private void MainFrame_Load(object sender, EventArgs e) { this.Text = $"无锡麟力科技有限公司(操作员:{PubInfo.username})"; } private void button10_Click(object sender, EventArgs e) { //DllConfigSec.McaEventQuery temp = new DllConfigSec.McaEventQuery(); //temp.Show(); } } public class tempclass { public mystruct tempstruct { get; set; } } public struct mystruct { public int id { get; set; } } }