|
|
@@ -1,37 +0,0 @@ |
|
|
|
using System; |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.Diagnostics; |
|
|
|
using System.IO; |
|
|
|
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.Navigation; |
|
|
|
|
|
|
|
namespace HKLinsten |
|
|
|
{ |
|
|
|
/// <summary> |
|
|
|
/// Interaction logic for MainWindow.xaml |
|
|
|
/// </summary> |
|
|
|
public partial class MainWindow : Window |
|
|
|
{ |
|
|
|
public MainWindow() |
|
|
|
{ |
|
|
|
InitializeComponent(); |
|
|
|
var path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "HKCardOUT.exe"); |
|
|
|
Process.Start(path); |
|
|
|
this.Loaded += MainWindow_Loaded; |
|
|
|
} |
|
|
|
|
|
|
|
private void MainWindow_Loaded(object sender, RoutedEventArgs e) |
|
|
|
{ |
|
|
|
this.Visibility = Visibility.Hidden; |
|
|
|
} |
|
|
|
} |
|
|
|
} |