using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LYFZ.Software.MainBusiness.TimeAndAttendance { public class MakeAnAppointment : LYFZ.Software.UI.TimeAndAttendance.MakeAnAppointment { public MakeAnAppointment() { this.Load += MakeAnAppointment_Load; this.butnElectiondress.Click += butnElectiondress_Click; this.butnLookatthedesign.Click += butnLookatthedesign_Click; this.butnPickup.Click += butnPickup_Click; this.butnservice.Click += butnservice_Click; this.butnTakepictures.Click += butnTakepictures_Click; this.butnSelectionoffilms.Click += butnSelectionoffilms_Click; } /// /// 是否保存 /// public bool IsSaveed = false; /// /// 选择的类型 /// public string StrSelectType = ""; /// /// 窗体加载事件 /// /// /// void MakeAnAppointment_Load(object sender, EventArgs e) { } /// /// 安排拍照 /// /// /// void butnTakepictures_Click(object sender, EventArgs e) { this.IsSaveed = true; this.StrSelectType = "0"; this.Close(); } /// /// 安排选片 /// /// /// void butnSelectionoffilms_Click(object sender, EventArgs e) { this.IsSaveed = true; this.StrSelectType = "1"; this.Close(); } /// /// 安排看设计 /// /// /// void butnLookatthedesign_Click(object sender, EventArgs e) { this.IsSaveed = true; this.StrSelectType = "2"; this.Close(); } /// /// 安排取件 /// /// /// void butnPickup_Click(object sender, EventArgs e) { this.IsSaveed = true; this.StrSelectType = "3"; this.Close(); } /// /// 安排服务 /// /// /// void butnservice_Click(object sender, EventArgs e) { this.IsSaveed = true; this.StrSelectType = "4"; this.Close(); } /// /// 安排选礼服 /// /// /// void butnElectiondress_Click(object sender, EventArgs e) { this.IsSaveed = true; this.StrSelectType = "5"; this.Close(); } } }