Interaction logic for QoSWindow.xaml
Inheritance: System.Windows.Window
Example #1
0
 private void labelQuality_MouseUp(object sender, MouseButtonEventArgs e)
 {
     if (this.AVSession != null && this.AVSession.IsActive)
     {
         if (this.qosWindow == null)
         {
             this.qosWindow      = new QoSWindow();
             this.qosWindow.Info = this.AVSession.GetVideoQualityInfo();
         }
         this.qosWindow.Show();
     }
 }
 void qosWindow_Closed(object sender, EventArgs e)
 {
     this.qosWindow = null;
 }
Example #3
0
 void qosWindow_Closed(object sender, EventArgs e)
 {
     this.qosWindow = null;
 }
 private void labelQuality_MouseUp(object sender, MouseButtonEventArgs e)
 {
     if (this.AVSession != null && this.AVSession.IsActive)
     {
         if (this.qosWindow == null)
         {
             this.qosWindow = new QoSWindow();
             this.qosWindow.Info = this.AVSession.GetVideoQualityInfo();
         }
         this.qosWindow.Show();
     }
 }