コード例 #1
0
ファイル: MainWindow.xaml.cs プロジェクト: ppucik/DOZP
 private void TableOfContentsImgEdit_PageSaved(object sender, ImageSavedOutputEventArgs e)
 {
     Debug.WriteLine(String.Format("TableOfContentsImgEdit_PageSaved [{0}]", e.PagePosition));
 }
コード例 #2
0
ファイル: MainWindow.xaml.cs プロジェクト: ppucik/DOZP
        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();
            //}
        }
コード例 #3
0
ファイル: MainWindow.xaml.cs プロジェクト: ppucik/DOZP
        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();
            }
        }