You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.4 KiB
C#

9 months ago
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace POSV.Member
{
public partial class CardExchangeDialogForm : BusinessForm
{
public CardExchangeDialogForm()
{
InitializeComponent();
this.controlBox.Text = "会员卡补换";
this.controlBox.ShowApplicationVersion = false;
}
private void OnCloseTouchClick(object sender, EventArgs e)
{
//再关闭当前窗体
this.Close();
}
/// <summary>
/// 确定按钮
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void BtnOk(object sender, EventArgs e)
{
OnOkClick?.Invoke(sender, new NotifyEventArgs(NotifyAction.Notify, "", ""));
//再关闭当前窗体
this.Close();
}
/// <summary>
/// 取消按钮
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void BtnCancel(object sender, EventArgs e)
{
//再关闭当前窗体
this.Close();
}
public event NofityEventHandler OnOkClick;
}
}