//NOT WORKING!!!

        /*
         * private void m_tmrGif_Tick(object sender, System.EventArgs e)
         * {
         *      m_tmrGif.Stop();
         *
         *      m_iFrameGif++;
         *      if( m_iFrameGif > 10 )
         *              m_iFrameGif = 0;
         *
         *      imgGif.Clip = new RectangleGeometry {
         *                     Rect =
         *                         new Rect(
         *                             m_iFrameGif * m_iImgWidth,
         *                             0,
         *                             m_iImgWidth,
         *                             m_iImgHeight)
         *                         };
         *
         *      Canvas.SetLeft( imgGif, -1 * m_iImgWidth * m_iFrameGif);
         *
         *      m_tmrGif.Start();
         * }
         */

        private void m_btnSaveToPhone_Click(object sender, System.Windows.RoutedEventArgs e)
        {
            if (m_iIndex < 0)
            {
                return;
            }
            if (m_iIndex >= m_aImages.Count)
            {
                return;
            }

            RscStore store = new RscStore();

            string sPath = m_aImages[m_iIndex];
            string sName = store.GetOriginalFileNameOfPath(sPath);

            //MessageBox.Show( sPath + "\r\n" + sName ); //sTnFolder + "\r\n" + sTnPath );

            Stream stream = store.GetReaderStream(sPath, false);

            MediaLibrary media = new MediaLibrary();

            media.SavePicture(sName, stream);

            stream.Close();

            MessageBox.Show("Image (" + sName + ") saved to device's Saved Pictures folder.");
        }