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 HighWayIot.Winform.UserControlPages.ParamConfigPages { public partial class ProductionScheduling : UserControl { public ProductionScheduling() { InitializeComponent(); init(); } private void init() { } private void UpdateConfigButton_Click(object sender, EventArgs e) { } private void SelectConfigButton_Click(object sender, EventArgs e) { } } }