TRX/tools/config/TRX_ConfigToolLib/Controls/AboutWindow.xaml.cs
2024-10-03 10:36:35 +02:00

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);
}
}