Example #1
0
 public Compose(ref PhoneControl control, string to, string message)
 {
     InitializeComponent();
     _controller         = control;
     textBoxNumber.Text  = to;
     textBoxMessage.Text = message;
 }
Example #2
0
        public SMSPanel()
        {
            InitializeComponent();
            var ports = new PhonePorts();

            ports.ShowDialog();
            _phoneControl = new PhoneControl(ports.Mobile);
        }
Example #3
0
 public Compose(ref PhoneControl control)
 {
     InitializeComponent();
     _controller = control;
 }