コード例 #1
0
        // 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();
        }
コード例 #2
0
ファイル: MainMenu.cs プロジェクト: HendrikoDuToit/Dotslash
        // 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();
        }