[GUI] Add a link to project's wiki

Closes #284
This commit is contained in:
Alexey Golub
2020-04-05 00:31:01 +03:00
parent dac7c664d9
commit 5bce4b52ff
4 changed files with 37 additions and 2 deletions

View File

@@ -1,4 +1,7 @@
namespace DiscordChatExporter.Gui.Views
using System.Windows.Navigation;
using DiscordChatExporter.Gui.Internal;
namespace DiscordChatExporter.Gui.Views
{
public partial class RootView
{
@@ -6,5 +9,11 @@
{
InitializeComponent();
}
private void Hyperlink_OnRequestNavigate(object sender, RequestNavigateEventArgs e)
{
ProcessEx.StartShellExecute(e.Uri.AbsoluteUri);
e.Handled = true;
}
}
}