コード例 #1
0
        public void ShareScrennNotification(string from, string connectionString)
        {
            ScrenShareForm screenShareForm = new ScrenShareForm(from, connectionString, false);

            ClientInformation.ShareScreenWindows.Add(from, screenShareForm);
            screenShareForm.Show();
        }
コード例 #2
0
 public void GroupShareScreenNotification(string sender, string groupName, string connectionString)
 {
     if (!ClientInformation.ShareScreenWindows.ToList().Exists(x => x.Key == groupName))
     {
         ScrenShareForm screenShareForm = new ScrenShareForm(groupName, connectionString, true);
         ClientInformation.ShareScreenWindows.Add(groupName, screenShareForm);
         screenShareForm.Show();
     }
 }