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