| 123456789101112131415161718192021222324252627282930313233343536 |
- using CoreFS.CA06;
- using System;
- using System.Windows.Forms;
- namespace Core.StlMes.Client.Qcm
- {
- public delegate void ProductPlaneSucessHandler(object sender, ProductPlaneArgs e);
- public partial class PopupProductPlane : FrmBase
- {
- public event ProductPlaneSucessHandler ProductPlaneSucessEvent;
- /// <summary>
- /// 弹窗构造函数
- /// </summary>
- /// <param name="args">输入参数</param>
- public PopupProductPlane(string args)
- {
- InitializeComponent();
- }
- private void btnClose_Click(object sender, EventArgs e)
- {
- if (ProductPlaneSucessEvent != null)
- {
- ProductPlaneArgs e2 = new ProductPlaneArgs();
- ProductPlaneSucessEvent(this, e2);
- }
- this.DialogResult = DialogResult.OK;
- }
- }
- public class ProductPlaneArgs : EventArgs
- {
- }
- }
|