mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-02 08:09:16 +00:00
19 lines
450 B
C#
19 lines
450 B
C#
using System.Windows.Navigation;
|
|
using DiscordChatExporter.Gui.Internal;
|
|
|
|
namespace DiscordChatExporter.Gui.Views
|
|
{
|
|
public partial class RootView
|
|
{
|
|
public RootView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void Hyperlink_OnRequestNavigate(object sender, RequestNavigateEventArgs e)
|
|
{
|
|
ProcessEx.StartShellExecute(e.Uri.AbsoluteUri);
|
|
e.Handled = true;
|
|
}
|
|
}
|
|
} |