// Answers the call.
        private void btnAnswerCall_Click(object sender, EventArgs e)
        {
            frmPhone frmPhone = new frmPhone(this.Top, this.Right, admin);

            frmPhone.StartPosition = FormStartPosition.Manual;
            frmPhone.Show();
        }
Esempio n. 2
0
        // Answers the phone.
        private void button1_Click(object sender, EventArgs e)
        {
            callAnswerred = true;
            frmPhone frmPhone = new frmPhone(this.Top, this.Right, admin);

            frmPhone.StartPosition = FormStartPosition.Manual;
            frmPhone.Show();
        }