Exemplo n.º 1
0
 private void TableOfContentsImgEdit_PageSaved(object sender, ImageSavedOutputEventArgs e)
 {
     Debug.WriteLine(String.Format("TableOfContentsImgEdit_PageSaved [{0}]", e.PagePosition));
 }
Exemplo n.º 2
0
        private void FrontCoverImgEdit_ImageSaved(object sender, ImageSavedOutputEventArgs e)
        {
            Debug.WriteLine(String.Format("FrontCoverImgEdit_ImageSaved: {0}", e.OutputFileName));

            //if (File.Exists(e.OutputFileName))
            //{
            //    FrontCoverImgEdit.ImageFilePath = e.OutputFileName;
            //    FrontCoverImgEdit.Display();
            //}
        }
Exemplo n.º 3
0
        private void TableOfContentsImgEdit_ImageSaved(object sender, ImageSavedOutputEventArgs e)
        {
            Debug.WriteLine(String.Format("TableOfContentsImgEdit_ImageSaved: {0}", e.OutputFileName));

            if (File.Exists(e.OutputFileName))
            {
                TableOfContentsImgEdit.ImageFilePath = e.OutputFileName;
                TableOfContentsImgEdit.Display();
            }
        }