|
|
@ -6,6 +6,7 @@ using System.Linq; |
|
|
|
using System.Threading.Tasks; |
|
|
|
using System.Windows; |
|
|
|
using System.Windows.Controls; |
|
|
|
using System.Windows.Navigation; |
|
|
|
using Text_Grab.Interfaces; |
|
|
|
using Text_Grab.Models; |
|
|
|
using Text_Grab.Properties; |
|
|
@ -143,4 +144,10 @@ public partial class LanguageSettings : Page |
|
|
|
|
|
|
|
Process.Start("explorer.exe", tesseractFilePath); |
|
|
|
} |
|
|
|
|
|
|
|
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e) |
|
|
|
{ |
|
|
|
Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri) { UseShellExecute = true }); |
|
|
|
e.Handled = true; |
|
|
|
} |
|
|
|
} |