From beaf945a41f222150eee991914027580a5eb615e Mon Sep 17 00:00:00 2001 From: rexlin Date: Wed, 23 Sep 2020 18:19:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=A1=B9=E7=9B=AE=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DLL_HK.sln | 31 + ECR_N5_DLL_TestUI/App.config | 6 + ECR_N5_DLL_TestUI/App.xaml | 9 + ECR_N5_DLL_TestUI/App.xaml.cs | 17 + ECR_N5_DLL_TestUI/ECR_N5_DLL_TestUI.csproj | 132 + ECR_N5_DLL_TestUI/MainWindow.xaml | 101 + ECR_N5_DLL_TestUI/MainWindow.xaml.cs | 1050 +++++++ ECR_N5_DLL_TestUI/Properties/AssemblyInfo.cs | 55 + .../Properties/Resources.Designer.cs | 63 + ECR_N5_DLL_TestUI/Properties/Resources.resx | 117 + .../Properties/Settings.Designer.cs | 26 + .../Properties/Settings.settings | 7 + n5coredll/LoyaltyType.cs | 6 + n5coredll/N5Core.cs | 2434 +++++++++++++++++ n5coredll/N5PropertyOper.cs | 96 + n5coredll/ObjectUtil.cs | 239 ++ n5coredll/PaymentApp.cs | 15 + n5coredll/PaymentType.cs | 23 + n5coredll/Properties/AssemblyInfo.cs | 36 + n5coredll/Properties/Settings.Designer.cs | 26 + n5coredll/Properties/Settings.settings | 6 + n5coredll/RefundResult.cs | 374 +++ n5coredll/RequestResult.cs | 103 + n5coredll/RetrievalResult.cs | 468 ++++ n5coredll/SaleResult.cs | 461 ++++ n5coredll/TxnStatus.cs | 9 + n5coredll/TxnType.cs | 5 + n5coredll/Util.cs | 36 + n5coredll/VoidResult.cs | 169 ++ n5coredll/app.config | 3 + n5coredll/n5codedll.snk | Bin 0 -> 596 bytes n5coredll/n5coredll.csproj | 88 + 32 files changed, 6211 insertions(+) create mode 100644 DLL_HK.sln create mode 100644 ECR_N5_DLL_TestUI/App.config create mode 100644 ECR_N5_DLL_TestUI/App.xaml create mode 100644 ECR_N5_DLL_TestUI/App.xaml.cs create mode 100644 ECR_N5_DLL_TestUI/ECR_N5_DLL_TestUI.csproj create mode 100644 ECR_N5_DLL_TestUI/MainWindow.xaml create mode 100644 ECR_N5_DLL_TestUI/MainWindow.xaml.cs create mode 100644 ECR_N5_DLL_TestUI/Properties/AssemblyInfo.cs create mode 100644 ECR_N5_DLL_TestUI/Properties/Resources.Designer.cs create mode 100644 ECR_N5_DLL_TestUI/Properties/Resources.resx create mode 100644 ECR_N5_DLL_TestUI/Properties/Settings.Designer.cs create mode 100644 ECR_N5_DLL_TestUI/Properties/Settings.settings create mode 100644 n5coredll/LoyaltyType.cs create mode 100644 n5coredll/N5Core.cs create mode 100644 n5coredll/N5PropertyOper.cs create mode 100644 n5coredll/ObjectUtil.cs create mode 100644 n5coredll/PaymentApp.cs create mode 100644 n5coredll/PaymentType.cs create mode 100644 n5coredll/Properties/AssemblyInfo.cs create mode 100644 n5coredll/Properties/Settings.Designer.cs create mode 100644 n5coredll/Properties/Settings.settings create mode 100644 n5coredll/RefundResult.cs create mode 100644 n5coredll/RequestResult.cs create mode 100644 n5coredll/RetrievalResult.cs create mode 100644 n5coredll/SaleResult.cs create mode 100644 n5coredll/TxnStatus.cs create mode 100644 n5coredll/TxnType.cs create mode 100644 n5coredll/Util.cs create mode 100644 n5coredll/VoidResult.cs create mode 100644 n5coredll/app.config create mode 100644 n5coredll/n5codedll.snk create mode 100644 n5coredll/n5coredll.csproj diff --git a/DLL_HK.sln b/DLL_HK.sln new file mode 100644 index 0000000..c0e0d66 --- /dev/null +++ b/DLL_HK.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28307.539 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "n5coredll", "n5coredll\n5coredll.csproj", "{1F0C1D84-FD97-41F1-BC8B-F2F22C1997A1}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ECR_N5_DLL_TestUI", "ECR_N5_DLL_TestUI\ECR_N5_DLL_TestUI.csproj", "{DEF387D0-3F98-4720-874D-8A753399B206}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1F0C1D84-FD97-41F1-BC8B-F2F22C1997A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1F0C1D84-FD97-41F1-BC8B-F2F22C1997A1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1F0C1D84-FD97-41F1-BC8B-F2F22C1997A1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1F0C1D84-FD97-41F1-BC8B-F2F22C1997A1}.Release|Any CPU.Build.0 = Release|Any CPU + {DEF387D0-3F98-4720-874D-8A753399B206}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DEF387D0-3F98-4720-874D-8A753399B206}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DEF387D0-3F98-4720-874D-8A753399B206}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DEF387D0-3F98-4720-874D-8A753399B206}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {09A4E58D-A17A-46E6-A4C0-323D0C8C2E63} + EndGlobalSection +EndGlobal diff --git a/ECR_N5_DLL_TestUI/App.config b/ECR_N5_DLL_TestUI/App.config new file mode 100644 index 0000000..74ade9d --- /dev/null +++ b/ECR_N5_DLL_TestUI/App.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/ECR_N5_DLL_TestUI/App.xaml b/ECR_N5_DLL_TestUI/App.xaml new file mode 100644 index 0000000..c414142 --- /dev/null +++ b/ECR_N5_DLL_TestUI/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/ECR_N5_DLL_TestUI/App.xaml.cs b/ECR_N5_DLL_TestUI/App.xaml.cs new file mode 100644 index 0000000..64291ff --- /dev/null +++ b/ECR_N5_DLL_TestUI/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace ECR_N5_DLL_TestUI +{ + /// + /// App.xaml 的交互逻辑 + /// + public partial class App : Application + { + } +} diff --git a/ECR_N5_DLL_TestUI/ECR_N5_DLL_TestUI.csproj b/ECR_N5_DLL_TestUI/ECR_N5_DLL_TestUI.csproj new file mode 100644 index 0000000..8389570 --- /dev/null +++ b/ECR_N5_DLL_TestUI/ECR_N5_DLL_TestUI.csproj @@ -0,0 +1,132 @@ + + + + + Debug + AnyCPU + {DEF387D0-3F98-4720-874D-8A753399B206} + WinExe + ECR_N5_DLL_TestUI + ECR_N5_DLL_TestUI + v4.0 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + true + true + false + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + true + + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + 4.0 + + + + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + MainWindow.xaml + Code + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + + + False + Microsoft .NET Framework 4.6.1 %28x86 和 x64%29 + true + + + False + .NET Framework 3.5 SP1 + false + + + + + {1f0c1d84-fd97-41f1-bc8b-f2f22c1997a1} + n5coredll + + + + \ No newline at end of file diff --git a/ECR_N5_DLL_TestUI/MainWindow.xaml b/ECR_N5_DLL_TestUI/MainWindow.xaml new file mode 100644 index 0000000..4fb6ca6 --- /dev/null +++ b/ECR_N5_DLL_TestUI/MainWindow.xaml @@ -0,0 +1,101 @@ + + + + + + + + + + + +