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

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