diff --git a/Code/CSRender/CSRender/MainWindow.xaml.cs b/Code/CSRender/CSRender/MainWindow.xaml.cs index 0a6b56ed5334c51664004c3f5ad8bb9b14be16b2..1ee8463c6c033d95a09ceea28ce527c9d1518703 100644 --- a/Code/CSRender/CSRender/MainWindow.xaml.cs +++ b/Code/CSRender/CSRender/MainWindow.xaml.cs @@ -118,6 +118,8 @@ namespace CSRender { CustomMsgBox.Show(mainWindow, "指定されたファイルあるいはフォルダが存在しません。" + "\nもう一度設定してください。", "The specified file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information); + ResultConsole.Text += " 指定された対象ファイルあるいはフォルダを発見できませんでした\r\n"; + ResultConsole.Text += "\r\n"; return; } @@ -126,6 +128,8 @@ namespace CSRender { CustomMsgBox.Show(mainWindow, "指定されたリファレンスファイルあるいはフォルダが存在しません。" + "\nもう一度設定してください。", "The specified reference file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information); + ResultConsole.Text += " 指定されたリファレンスファイルあるいはフォルダを発見できませんでした\r\n"; + ResultConsole.Text += "\r\n"; return; } @@ -134,6 +138,8 @@ namespace CSRender { CustomMsgBox.Show(mainWindow, "指定された作業フォルダが存在しません。" + "\nもう一度設定してください。", "The specified reference file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information); + ResultConsole.Text += " 指定された作業フォルダを発見できませんでした\r\n"; + ResultConsole.Text += "\r\n"; return; } @@ -232,7 +238,7 @@ namespace CSRender { ResultConsole.Text += "<変換開始>\r\n"; - ResultConsole.Text += "PDFを" + FileSelect.Text + "に変換します\r\n"; + ResultConsole.Text += " PDFを" + FileSelect.Text + "に変換します\r\n"; ResultConsole.Text += "\r\n"; //必要に応じてページ引数を指定 @@ -249,6 +255,8 @@ namespace CSRender { CustomMsgBox.Show(mainWindow, "指定されたファイルあるいはフォルダが存在しません。" + "\nもう一度TIFF出力する対象を設定してください。", "The specified file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information); + ResultConsole.Text += " 指定された対象ファイルあるいはフォルダを発見できませんでした\r\n"; + ResultConsole.Text += "<変換中止>\r\n"; return; } @@ -259,6 +267,8 @@ namespace CSRender { CustomMsgBox.Show(mainWindow, "指定された作業フォルダが存在しません。" + "\nもう一度設定してください。", "The specified reference file or folder does not exist", MessageBoxButton.OK, MessageBoxImage.Information); + ResultConsole.Text += " 指定された作業フォルダを発見できませんでした\r\n"; + ResultConsole.Text += "<変換中止>\r\n"; return; } }