mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-29 13:17:58 +03:00
21 lines
487 B
C#
21 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);
|
|||
|
}
|
|||
|
}
|