From 07a7d082a5d26a8e23f0d0ddb90585fec6323e9f Mon Sep 17 00:00:00 2001 From: tsuji Date: Thu, 25 Nov 2021 17:19:12 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=9A=E3=83=BC=E3=82=B8=E5=85=A5=E5=8A=9B?= =?UTF-8?q?=E3=81=AE=E8=AA=A4=E5=85=A5=E5=8A=9B=E4=BF=AE=E6=AD=A3=E6=A9=9F?= =?UTF-8?q?=E8=83=BD=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Code/CSRender/CSRender/MainWindow.xaml.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Code/CSRender/CSRender/MainWindow.xaml.cs b/Code/CSRender/CSRender/MainWindow.xaml.cs index 0a6b56e..1ee8463 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; } } -- 2.22.0