mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-19 22:00:12 +10:00
Fix more hyperlink issues
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Documents;
|
||||
@@ -48,7 +49,10 @@ namespace WPinternals
|
||||
}
|
||||
else
|
||||
{
|
||||
System.Diagnostics.Process.Start(link.NavigateUri.ToString());
|
||||
Process process = new();
|
||||
process.StartInfo.UseShellExecute = true;
|
||||
process.StartInfo.FileName = link.NavigateUri.AbsoluteUri;
|
||||
process.Start();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user