public VipUpdate(string ID) {//修改 InitializeComponent(); currentSelectedID = ID; _instance = this; isAdd = false; }
public VipUpdate() { InitializeComponent(); currentSelectedID = "0"; isAdd = true; _instance = this; }
private void AddBtn_Click(object sender, EventArgs e) { VipUpdate vipUpdate = new VipUpdate(); vipUpdate.Show(); }
private void UpdateBtn_Click(object sender, EventArgs e) { VipUpdate vipUpdate = new VipUpdate(currentSelectedID); vipUpdate.Show(); }