Example #1
0
        public void OnHDActivated(HDEventArgs hdEventArgs)
        {
            EventHandler <HDEventArgs> handler = HDActivated;

            if (handler != null)
            {
                handler(this, hdEventArgs);
            }
        }
Example #2
0
 private void MediaElementHDActivated(object sender, HDEventArgs e)
 {
     if (e.IsHD)
     {
         TimeLine.HDEnabled.Text = "HD";
     }
     else
     {
         TimeLine.HDEnabled.Text = "SD";
     }
 }