Browse Source

转档-解锁按钮链接

lvle 1 year ago
parent
commit
f708bdc3d8
1 changed files with 9 additions and 1 deletions
  1. 9 1
      PDF Office/Helper/ConverterHelper.cs

+ 9 - 1
PDF Office/Helper/ConverterHelper.cs

@@ -16,6 +16,7 @@ using System.IO.Compression;
 using System.Windows;
 using System.Net.Mime;
 using System.Windows.Controls;
+using PDF_Master.Properties;
 
 namespace PDF_Master.Helper
 {
@@ -620,7 +621,14 @@ namespace PDF_Master.Helper
         /// </summary>
         public static void convertUnlock()
         {
-
+            if (Settings.Default.AppProperties.culture == "zh-CN")
+            {
+                Process.Start(new ProcessStartInfo("https://www.pdfreaderpro.com/zh-cn/windows/store"));
+            }
+            else
+            {
+                Process.Start(new ProcessStartInfo("https://www.pdfreaderpro.com/windows/store"));
+            }
         }
 
     }