mirror of
https://github.com/opentx/opentx.git
synced 2025-07-24 16:55:20 +03:00
37 lines
864 B
C#
37 lines
864 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Shapes;
|
|
using System.Windows.Navigation;
|
|
|
|
|
|
|
|
namespace OpenTXspeak
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for installvoices.xaml
|
|
/// </summary>
|
|
public partial class InstallVoicesWindow : Window
|
|
{
|
|
public InstallVoicesWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
|
|
{
|
|
Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
|
|
e.Handled = true;
|
|
}
|
|
|
|
}
|
|
}
|