新框架PC前端标准版(祈禧6月初版本)
lg
2025-11-20 fbe33a615f1c4e798a0f8e58163e68c3ce789614
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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();
        }
 
        /// <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();
        }
    }
}