├── .vs └── Alipay │ ├── DesignTimeBuild │ ├── .dtbcache │ └── .dtbcache.v2 │ └── v16 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ └── storage.ide ├── Alipay.sln ├── Alipay ├── Alipay.csproj ├── Alipay.csproj.user ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── alipay_logo.png └── obj │ ├── Alipay.csproj.nuget.cache │ ├── Alipay.csproj.nuget.dgspec.json │ ├── Alipay.csproj.nuget.g.props │ ├── Alipay.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── Alipay.AssemblyInfo.cs │ │ ├── Alipay.AssemblyInfoInputs.cache │ │ ├── Alipay.assets.cache │ │ ├── Alipay.csproj.CopyComplete │ │ ├── Alipay.csproj.CoreCompileInputs.cache │ │ ├── Alipay.csproj.FileListAbsolute.txt │ │ ├── Alipay.csprojAssemblyReference.cache │ │ ├── Alipay.designer.deps.json │ │ ├── Alipay.designer.runtimeconfig.json │ │ ├── Alipay.dll │ │ ├── Alipay.exe │ │ ├── Alipay.g.resources │ │ ├── Alipay.genruntimeconfig.cache │ │ ├── Alipay.pdb │ │ ├── Alipay_MarkupCompile.cache │ │ ├── Alipay_MarkupCompile.i.cache │ │ ├── Alipay_MarkupCompile.lref │ │ ├── App.baml │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── MainWindow.baml │ │ ├── MainWindow.g.cs │ │ └── MainWindow.g.i.cs │ ├── Release │ └── netcoreapp3.1 │ │ ├── Alipay.AssemblyInfo.cs │ │ ├── Alipay.AssemblyInfoInputs.cache │ │ ├── Alipay.assets.cache │ │ ├── Alipay.csproj.CopyComplete │ │ ├── Alipay.csproj.FileListAbsolute.txt │ │ ├── Alipay.designer.deps.json │ │ ├── Alipay.designer.runtimeconfig.json │ │ ├── Alipay.dll │ │ ├── Alipay.exe │ │ ├── Alipay.g.resources │ │ ├── Alipay.pdb │ │ ├── Alipay_MarkupCompile.cache │ │ ├── Alipay_MarkupCompile.i.cache │ │ ├── Alipay_MarkupCompile.i.lref │ │ ├── Alipay_MarkupCompile.lref │ │ ├── App.baml │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── MainWindow.baml │ │ ├── MainWindow.g.cs │ │ └── MainWindow.g.i.cs │ ├── project.assets.json │ └── project.nuget.cache └── README.md /.vs/Alipay/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmRiley/Alipay_ToFace/7a3bb2524546df8279429f722357e7c2e0a6b8bf/.vs/Alipay/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /.vs/Alipay/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmRiley/Alipay_ToFace/7a3bb2524546df8279429f722357e7c2e0a6b8bf/.vs/Alipay/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/Alipay/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmRiley/Alipay_ToFace/7a3bb2524546df8279429f722357e7c2e0a6b8bf/.vs/Alipay/v16/.suo -------------------------------------------------------------------------------- /.vs/Alipay/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmRiley/Alipay_ToFace/7a3bb2524546df8279429f722357e7c2e0a6b8bf/.vs/Alipay/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /.vs/Alipay/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmRiley/Alipay_ToFace/7a3bb2524546df8279429f722357e7c2e0a6b8bf/.vs/Alipay/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Alipay.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29806.167 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Alipay", "Alipay\Alipay.csproj", "{157515FF-7B61-446C-83BF-959E034CD53F}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {157515FF-7B61-446C-83BF-959E034CD53F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {157515FF-7B61-446C-83BF-959E034CD53F}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {157515FF-7B61-446C-83BF-959E034CD53F}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {157515FF-7B61-446C-83BF-959E034CD53F}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {5DF3FE88-9877-4742-B17B-8F46D1849CD3} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Alipay/Alipay.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.1 6 | true 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Alipay/Alipay.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | Designer 7 | 8 | 9 | 10 | 11 | Designer 12 | 13 | 14 | -------------------------------------------------------------------------------- /Alipay/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Alipay/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace Alipay 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Alipay/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | [assembly: ThemeInfo( 4 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located 5 | //(used if a resource is not found in the page, 6 | // or application resource dictionaries) 7 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located 8 | //(used if a resource is not found in the page, 9 | // app, or any theme specific resource dictionaries) 10 | )] 11 | -------------------------------------------------------------------------------- /Alipay/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  10 | 11 | 12 | 13 |