//保存した書き込みの一覧を表示する
 private void ShowAnnotationButton_Click(object sender, RoutedEventArgs e)
 {
     ShowAnnotationWindow dialog = new ShowAnnotationWindow();
     dialog.Owner = this;
     dialog.Show();
     dialog.Title = epubFileName + "のかきこみ一覧";
     dialog.CreateCaptureButton(epubPath, epubFileName);
 }
        //キャプチャ一覧の表示
        private void showCaptureButton_Click(object sender, RoutedEventArgs e)
        {
            ShowAnnotationWindow saw = new ShowAnnotationWindow();

            saw.Owner = this;
        }