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();
|
}
|
|
/// <summary>
|
/// 选择后的回调事件
|
/// </summary>
|
public event EventHandler<UpdateParentEventArgs> UpdateParent;
|
|
private void simpleButton1_Click(object sender, EventArgs e)
|
{
|
var list = new List<string>();
|
|
list.Add(textEdit1.EditValue?.ToString() ?? "");
|
|
UpdateParent?.Invoke(this, new UpdateParentEventArgs { StringList = list }); Close();
|
}
|
}
|
}
|