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
30
| namespace Yw.WinFrmUI
| {
| /// <summary>
| ///
| /// </summary>
| public partial class GeneralOkAndCancelCtrl : DevExpress.XtraEditors.XtraUserControl
| {
| /// <summary>
| ///
| /// </summary>
| public GeneralOkAndCancelCtrl()
| {
| InitializeComponent();
| this.layoutControl1.SetupLayoutControl();
| }
|
| /// <summary>
| /// 确定
| /// </summary>
| public event Action OkEvent;
|
| //确定
| private void btnOk_Click(object sender, EventArgs e)
| {
| this.OkEvent?.Invoke();
| }
|
|
| }
| }
|
|