FrmRobot.cs 804 字节
using JAKA;
using OnlineStore.Common;
using OnlineStore.DeviceLibrary;
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 OnlineStore.XLRStore.inputForm
{
    public partial class FrmRobot : Form
    {
        public FrmRobot()
        {
            InitializeComponent();
        }

        private void FrmRobot_Load(object sender, EventArgs e)
        {
            string ip = ConfigAppSettings.GetValue("RobotIp");
            JAKABean jAKABean = StoreManager.XLRStore.inputEquip.RobotServer.GetJAKABean(ip);
            StoreManager.XLRStore.inputEquip.RobotServer.AssociateControl(ucRobot1, jAKABean);
        }
    }
}