using DevExpress.XtraEditors;
using Gs.DevApp.Entity;
using Gs.DevApp.ToolBox;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
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 Gs.DevApp.DevFrm.Rpt
{
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();
}
}
}