示例#1
0
 protected virtual void OnComplete(AlbumBrowseEventArgs args)
 {
     if (this.Complete != null)
     {
         this.Complete(this, args);
     }
 }
示例#2
0
 void albumBrowse_Complete(IAlbumBrowse sender, AlbumBrowseEventArgs e)
 {
     if (sender == albumBrowse)
     {
         if (Complete != null)
         {
             Complete(this, e);
         }
     }
 }