using System; using System.Collections.Generic; using Gs.DevApp.ToolBox; namespace Gs.DevApp.DevFrm.JJGZ { public partial class SetLB : DevExpress.XtraEditors.XtraForm { string _webServiceName = "MesAttanCon/"; public SetLB() { 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(); } } }