|
@@ -523,8 +523,8 @@ namespace PDF_Master.ViewModels.Dialog.HomePageToolsDialogs.HomePagePrinter
|
|
|
private void InitPrintOrientationList()
|
|
|
{
|
|
|
PrintOrientationList = new List<string>();
|
|
|
- PrintOrientationList.Add("Print_Portrait");
|
|
|
- PrintOrientationList.Add("Print_Landscape");
|
|
|
+ PrintOrientationList.Add(App.MainPageLoader.GetString("Print_Portrait"));
|
|
|
+ PrintOrientationList.Add(App.MainPageLoader.GetString("Print_Landscape"));
|
|
|
}
|
|
|
|
|
|
public void InitGetPrintModNameFromRadioButton()
|
|
@@ -802,7 +802,13 @@ namespace PDF_Master.ViewModels.Dialog.HomePageToolsDialogs.HomePagePrinter
|
|
|
alertsMessage.ShowDialog("", App.MainPageLoader.GetString("PageRangeWarning"), App.ServiceLoader.GetString("Text_ok"));
|
|
|
return;
|
|
|
}
|
|
|
+
|
|
|
PrintSettingsInfo.PageRangeList = DocumentTargetPages;
|
|
|
+ //自定义页面范围链表增加反转判断
|
|
|
+ if (PrintSettingsInfo.needReversePage)
|
|
|
+ {
|
|
|
+ PrintSettingsInfo.PageRangeList.Reverse();
|
|
|
+ }
|
|
|
this.printEvent.GetEvent<SendPrintSettingsInfoEvent>().Publish(new PrintSettingsInfoWithUnicode { printSettingsInfo = this.PrintSettingsInfo, Unicode = this.Unicode });
|
|
|
}
|
|
|
}
|