xxe 2 years ago
parent
commit
221941a717
6 changed files with 0 additions and 97 deletions
  1. +0
    -9
      HKLinsten/App.xaml
  2. +0
    -17
      HKLinsten/App.xaml.cs
  3. +0
    -10
      HKLinsten/AssemblyInfo.cs
  4. +0
    -10
      HKLinsten/HKLinsten.csproj
  5. +0
    -14
      HKLinsten/MainWindow.xaml
  6. +0
    -37
      HKLinsten/MainWindow.xaml.cs

+ 0
- 9
HKLinsten/App.xaml View File

@@ -1,9 +0,0 @@
<Application x:Class="HKLinsten.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:HKLinsten"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

+ 0
- 17
HKLinsten/App.xaml.cs View File

@@ -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
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}

+ 0
- 10
HKLinsten/AssemblyInfo.cs View File

@@ -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)
)]

+ 0
- 10
HKLinsten/HKLinsten.csproj View File

@@ -1,10 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
</PropertyGroup>

</Project>

+ 0
- 14
HKLinsten/MainWindow.xaml View File

@@ -1,14 +0,0 @@
<Window
x:Class="HKLinsten.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:HKLinsten"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="MainWindow"
Width="800"
Height="450"
Visibility="Collapsed"
mc:Ignorable="d">
<Grid />
</Window>

+ 0
- 37
HKLinsten/MainWindow.xaml.cs View File

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

Loading…
Cancel
Save