From a04a2bfe8973a9436e1dc570a9b5ac8fccf264da Mon Sep 17 00:00:00 2001
From: shanj <18996038927@163.com>
Date: Fri, 17 Jun 2022 03:42:56 +0800
Subject: [PATCH] =?UTF-8?q?=E5=BF=AB=E9=80=9F=E4=B8=8B=E5=8D=95=E5=B7=A5?=
=?UTF-8?q?=E5=85=B7?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
Binance.FastPlaceOrder/App.xaml | 9 ++
Binance.FastPlaceOrder/App.xaml.cs | 17 ++++
Binance.FastPlaceOrder/AssemblyInfo.cs | 10 +++
.../Binance.FastPlaceOrder.csproj | 10 +++
Binance.FastPlaceOrder/MainWindow.xaml | 86 +++++++++++++++++++
Binance.FastPlaceOrder/MainWindow.xaml.cs | 28 ++++++
Binance.TradeRobot.API.sln | 8 +-
7 files changed, 167 insertions(+), 1 deletion(-)
create mode 100644 Binance.FastPlaceOrder/App.xaml
create mode 100644 Binance.FastPlaceOrder/App.xaml.cs
create mode 100644 Binance.FastPlaceOrder/AssemblyInfo.cs
create mode 100644 Binance.FastPlaceOrder/Binance.FastPlaceOrder.csproj
create mode 100644 Binance.FastPlaceOrder/MainWindow.xaml
create mode 100644 Binance.FastPlaceOrder/MainWindow.xaml.cs
diff --git a/Binance.FastPlaceOrder/App.xaml b/Binance.FastPlaceOrder/App.xaml
new file mode 100644
index 0000000..3fe2ddd
--- /dev/null
+++ b/Binance.FastPlaceOrder/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/Binance.FastPlaceOrder/App.xaml.cs b/Binance.FastPlaceOrder/App.xaml.cs
new file mode 100644
index 0000000..72df122
--- /dev/null
+++ b/Binance.FastPlaceOrder/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 Binance.FastPlaceOrder
+{
+ ///
+ /// Interaction logic for App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/Binance.FastPlaceOrder/AssemblyInfo.cs b/Binance.FastPlaceOrder/AssemblyInfo.cs
new file mode 100644
index 0000000..8b5504e
--- /dev/null
+++ b/Binance.FastPlaceOrder/AssemblyInfo.cs
@@ -0,0 +1,10 @@
+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/Binance.FastPlaceOrder/Binance.FastPlaceOrder.csproj b/Binance.FastPlaceOrder/Binance.FastPlaceOrder.csproj
new file mode 100644
index 0000000..4106cb0
--- /dev/null
+++ b/Binance.FastPlaceOrder/Binance.FastPlaceOrder.csproj
@@ -0,0 +1,10 @@
+
+
+
+ WinExe
+ net6.0-windows
+ enable
+ true
+
+
+
diff --git a/Binance.FastPlaceOrder/MainWindow.xaml b/Binance.FastPlaceOrder/MainWindow.xaml
new file mode 100644
index 0000000..14e01f5
--- /dev/null
+++ b/Binance.FastPlaceOrder/MainWindow.xaml
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Binance.FastPlaceOrder/MainWindow.xaml.cs b/Binance.FastPlaceOrder/MainWindow.xaml.cs
new file mode 100644
index 0000000..c40d076
--- /dev/null
+++ b/Binance.FastPlaceOrder/MainWindow.xaml.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+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;
+using System.Windows.Shapes;
+
+namespace Binance.FastPlaceOrder
+{
+ ///
+ /// Interaction logic for MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/Binance.TradeRobot.API.sln b/Binance.TradeRobot.API.sln
index d8bc8f3..eced988 100644
--- a/Binance.TradeRobot.API.sln
+++ b/Binance.TradeRobot.API.sln
@@ -18,7 +18,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SDKAdapter", "SDKAdapter\SDKAdapter.csproj", "{E461043B-179D-4625-BF2F-C00EAB1C8213}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SDKTestConsole", "SDKTestConsole\SDKTestConsole.csproj", "{69458842-D4E0-4BB8-8E5A-254CC9074A23}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SDKTestConsole", "SDKTestConsole\SDKTestConsole.csproj", "{69458842-D4E0-4BB8-8E5A-254CC9074A23}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Binance.FastPlaceOrder", "Binance.FastPlaceOrder\Binance.FastPlaceOrder.csproj", "{CD8D9E32-CD57-4C89-B09F-DAF973A8E7F7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -50,6 +52,10 @@ Global
{69458842-D4E0-4BB8-8E5A-254CC9074A23}.Debug|Any CPU.Build.0 = Debug|Any CPU
{69458842-D4E0-4BB8-8E5A-254CC9074A23}.Release|Any CPU.ActiveCfg = Release|Any CPU
{69458842-D4E0-4BB8-8E5A-254CC9074A23}.Release|Any CPU.Build.0 = Release|Any CPU
+ {CD8D9E32-CD57-4C89-B09F-DAF973A8E7F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {CD8D9E32-CD57-4C89-B09F-DAF973A8E7F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {CD8D9E32-CD57-4C89-B09F-DAF973A8E7F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {CD8D9E32-CD57-4C89-B09F-DAF973A8E7F7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE