using DevExpress.XtraEditors;
using Gs.DevApp.ToolBox;
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.Rk
{
public partial class Frm_MesItemTblShow : DevExpress.XtraEditors.XtraForm
{
public Frm_MesItemTblShow()
{
InitializeComponent();
btnIn.Click += (s, e) =>
{
string _StringSingle = txt_chkOut.Checked ? "1" : "0";
UpdateParent?.Invoke(this, new UpdateParentEventArgs { StringSingle = _StringSingle }); Close();
};
}
///
/// 选择后的回调事件
///
public event EventHandler UpdateParent;
}
}