You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using Rs.MotionPlat.Entitys.Trays;
|
|
|
|
|
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.Timers;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace Rs.MotionPlat
|
|
|
|
|
{
|
|
|
|
|
public partial class MonitorTray : BaseForm
|
|
|
|
|
{
|
|
|
|
|
public MonitorTray()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void MonitorTray_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
dataGridView1.AutoGenerateColumns = false;
|
|
|
|
|
dataGridView2.AutoGenerateColumns = false;
|
|
|
|
|
dataGridView1.DataBindings.Add("DataSource", TurnoverTrayManager.Instance, "Slots",false,DataSourceUpdateMode.OnPropertyChanged);
|
|
|
|
|
dataGridView2.DataBindings.Add("DataSource", TestTrayManager.Instance, "Slots", false, DataSourceUpdateMode.OnPropertyChanged);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|