Esempio n. 1
0
        private void RtcControl_IJoinedMeeting(object sender, UserArgs e)
        {
            ShowMessage("Welcome to Meeting : " + e.MeetingID, System.Windows.Media.Brushes.DarkSlateBlue, true);

            myAdorner = AttachLoadingAdorner(rtcControl, e.UserName);

            //if you do not want to start the participant video right away remove this ..
            rtcControl.StartVideo();

            //start viewing sessions other than e.Session which is my session
            ProcessParticipants(e.Participants, e.Session, e.Sharing);
        }
Esempio n. 2
0
        private void IconfRTC_IJoinedMeeting(object sender, UserArgs e)
        {
            //I have joined a meeting
            iconfRTC.Visible = true;
            pnlJoin.Hide();
            pnlLayout.Show();
            ((OutlookPanelEx)pnlLayout.Controls[0]).HeaderText = iconfRTC.MyUserName;

            Text = @"iConfRTC Winform Demo App -" + e.UserName + @", Welcome to " + e.MeetingID;

            btnLeaveMeeting.Visible = true;

            ShowStatus("You joined " + e.MeetingID);

            //joined the meeting now lets start the video
            iconfRTC.StartVideo();

            //I need to add the video of the particpants to the layout control.
            ProcessParticipants(e.Participants, e.Session, e.Sharing);
        }