Example #1
0
 protected void OnMediaLoaded(MediaTagsLoadedEventArgs e)
 {
     if (MediaLoaded != null)
     {
         MediaLoaded(this, e);
     }
 }
Example #2
0
        private void TaggerTab_VisibleChanged(object sender, EventArgs e)
        {
            if (!this.Visible)
            {
                return;
            }
            else
            {
                MediaTagsLoadedEventArgs ple = new MediaTagsLoadedEventArgs();
                this.OnMediaLoaded(ple);

                this.Update(ple.Media);
            }
        }