CallPhoneMessage.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.MainBusiness.DoorCityProcess.SetSmallForm
  10. {
  11. public partial class CallPhoneMessage : LYFZ.Software.UI.DoorCityProcess.SetSmallForm.CallPhoneMessage
  12. {
  13. public string phoneNumber = "";
  14. public CallPhoneMessage()
  15. {
  16. btn_Call.Click += btn_Call_Click;
  17. btn_Close.Click += btn_Close_Click;
  18. this.Load += CallPhoneMessage_Load;
  19. }
  20. void CallPhoneMessage_Load(object sender, EventArgs e)
  21. {
  22. tb_CallPhoneNumber.Text = phoneNumber;
  23. }
  24. void btn_Close_Click(object sender, EventArgs e)
  25. {
  26. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.PhoneCall(phoneNumber);
  27. tb_CallPhoneNumber.Text = phoneNumber;
  28. }
  29. void btn_Call_Click(object sender, EventArgs e)
  30. {
  31. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.PhoneCall("0"+phoneNumber);
  32. tb_CallPhoneNumber.Text = "0" + phoneNumber;
  33. }
  34. }
  35. }