diff --git a/HKLinsten/App.xaml b/HKLinsten/App.xaml
deleted file mode 100644
index 5546d93..0000000
--- a/HKLinsten/App.xaml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
diff --git a/HKLinsten/App.xaml.cs b/HKLinsten/App.xaml.cs
deleted file mode 100644
index cdd4231..0000000
--- a/HKLinsten/App.xaml.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Threading.Tasks;
-using System.Windows;
-
-namespace HKLinsten
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
- }
-}
diff --git a/HKLinsten/AssemblyInfo.cs b/HKLinsten/AssemblyInfo.cs
deleted file mode 100644
index 8b5504e..0000000
--- a/HKLinsten/AssemblyInfo.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using System.Windows;
-
-[assembly: ThemeInfo(
- ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
- //(used if a resource is not found in the page,
- // or application resource dictionaries)
- ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
- //(used if a resource is not found in the page,
- // app, or any theme specific resource dictionaries)
-)]
diff --git a/HKLinsten/HKLinsten.csproj b/HKLinsten/HKLinsten.csproj
deleted file mode 100644
index 4106cb0..0000000
--- a/HKLinsten/HKLinsten.csproj
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- WinExe
- net6.0-windows
- enable
- true
-
-
-
diff --git a/HKLinsten/MainWindow.xaml b/HKLinsten/MainWindow.xaml
deleted file mode 100644
index c8fcb02..0000000
--- a/HKLinsten/MainWindow.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
diff --git a/HKLinsten/MainWindow.xaml.cs b/HKLinsten/MainWindow.xaml.cs
deleted file mode 100644
index 39e0faf..0000000
--- a/HKLinsten/MainWindow.xaml.cs
+++ /dev/null
@@ -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
-{
- ///
- /// Interaction logic for MainWindow.xaml
- ///
- 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;
- }
- }
-}