mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-29 05:08:00 +03:00
20 lines
487 B
C#
20 lines
487 B
C#
using System.Windows;
|
|
using TRX_ConfigToolLib.Models;
|
|
using TRX_ConfigToolLib.Utils;
|
|
|
|
namespace TRX_ConfigToolLib.Controls;
|
|
|
|
public partial class AboutWindow : Window
|
|
{
|
|
public AboutWindow()
|
|
{
|
|
InitializeComponent();
|
|
DataContext = new AboutWindowViewModel();
|
|
Owner = Application.Current.MainWindow;
|
|
}
|
|
|
|
private void GitHubHyperlink_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
ProcessUtils.Start(TRXConstants.Instance.GitHubURL);
|
|
}
|
|
}
|