123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using ProjectManagementSystem.Common.Config;
- using ProjectManagementSystem.Common.Core;
- using ProjectManagementSystem.Common.Logger;
- 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 ProjectManagementSystem.UI
- {
- public partial class DebugPlcUI : UserControl, IDisplayUI
- {
- public DebugPlcUI()
- {
- InitializeComponent();
- }
- public bool Init()
- {
- dataGridUI1.dataGridView1.CellClick += DataGridView1_CellClick;
- return true;
- }
- private void DataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
- {
- textBox1.Text = dataGridUI1.GetCurrentColValue("库位号");
- }
- public void UpdateDisplay()
- {
- if (!this.Visible) return;
- var dataList = PlcControl.Instance.ReadPlcInfo();
- dataGridUI1.ShowDataGrid(dataList, true);
- }
- }
- }
|