49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
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;
|
|
|
|
namespace ServiceBus95
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for About.xaml
|
|
/// </summary>
|
|
public partial class AboutWindow : Window
|
|
{
|
|
public AboutWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void CloseCanExecute(object sender, CanExecuteRoutedEventArgs e)
|
|
{
|
|
e.CanExecute = true;
|
|
}
|
|
|
|
private void CloseExecuted(object sender, ExecutedRoutedEventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
|
|
private void HyperlinkClick(object sender, RoutedEventArgs e)
|
|
{
|
|
Hyperlink hyperlink = (Hyperlink)sender;
|
|
Process.Start(new ProcessStartInfo
|
|
{
|
|
FileName = hyperlink.NavigateUri.ToString(),
|
|
UseShellExecute = true
|
|
});
|
|
}
|
|
}
|
|
}
|