Ejemplo n.º 1
0
        private void AttachBitmapSourceEvents(BitmapSource bitmapSource)
        {
            DownloadCompletedEventManager.AddHandler(bitmapSource, OnSourceDownloaded);
            DownloadFailedEventManager.AddHandler(bitmapSource, OnSourceFailed);
            DecodeFailedEventManager.AddHandler(bitmapSource, OnSourceFailed);

            _bitmapSource = bitmapSource;
        }