using Gs.DevApp.ToolBox;
using System;
using System.Collections.Generic;
namespace Gs.DevApp.DevFrm.QC
{
public partial class SelOutType : DevExpress.XtraEditors.XtraForm
{
string _webServiceName = "MesAttanCon/";
public SelOutType()
{
InitializeComponent();
}
///
/// 选择后的回调事件
///
public event EventHandler UpdateParent;
private void simpleButton1_Click(object sender, EventArgs e)
{
var list = new List();
list.Add(textEdit1.EditValue?.ToString() ?? "");
UpdateParent?.Invoke(this, new UpdateParentEventArgs { StringList = list }); Close();
}
}
}