lu
2025-04-19 27c04c726187ca50c6c693c4aec92a1c43ef115b
DevApp/Gs.DevApp/DevFrm/QC/MesQcExceptional.cs
@@ -15,6 +15,13 @@
    {
        string _webServiceName = "MesQcExceptionalManager/";
        List<FilterEntity> _filterList = new List<FilterEntity>();
        public void Initialize(string param)
        {
            // 使用param进行初始化工作
            MessageBox.Show(param);
        }
        public MesQcExceptional()
        {
            InitializeComponent();
@@ -252,20 +259,6 @@
            };
            frm.ShowDialog();
        }
        public event EventHandler<UpdateParentEventArgs> UpdateParent;
        private void simpleButton1_Click(object sender, EventArgs e)
        {
            if (UpdateParent != null)
            {
                List<string> lst = new List<string>();
                lst.Add("1");
                lst.Add("2");
                UpdateParent?.Invoke(this,
                new UpdateParentEventArgs { StringList = lst });
            }
        }
    }
}