12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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 LYFZ.Software.MainBusiness.DoorCityProcess.SetSmallForm
- {
- public partial class CallPhoneMessage : LYFZ.Software.UI.DoorCityProcess.SetSmallForm.CallPhoneMessage
- {
- public string phoneNumber = "";
- public CallPhoneMessage()
- {
- btn_Call.Click += btn_Call_Click;
- btn_Close.Click += btn_Close_Click;
- this.Load += CallPhoneMessage_Load;
- }
- void CallPhoneMessage_Load(object sender, EventArgs e)
- {
- tb_CallPhoneNumber.Text = phoneNumber;
- }
- void btn_Close_Click(object sender, EventArgs e)
- {
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.PhoneCall(phoneNumber);
- tb_CallPhoneNumber.Text = phoneNumber;
- }
- void btn_Call_Click(object sender, EventArgs e)
- {
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.PhoneCall("0"+phoneNumber);
- tb_CallPhoneNumber.Text = "0" + phoneNumber;
-
- }
-
- }
- }
|