From 6fc7702fe7a6ce252ebffa7b8fb5c442ed1894c0 Mon Sep 17 00:00:00 2001 From: shanji <18996038927@163.com> Date: Tue, 20 Sep 2022 16:08:55 +0800 Subject: [PATCH] 1 --- BBWY.Client/Views/Order/OrderListControl.xaml | 19 ++++++++++++++ .../Views/Order/OrderListControl.xaml.cs | 26 +++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 BBWY.Client/Views/Order/OrderListControl.xaml create mode 100644 BBWY.Client/Views/Order/OrderListControl.xaml.cs diff --git a/BBWY.Client/Views/Order/OrderListControl.xaml b/BBWY.Client/Views/Order/OrderListControl.xaml new file mode 100644 index 00000000..9b81dc9a --- /dev/null +++ b/BBWY.Client/Views/Order/OrderListControl.xaml @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/BBWY.Client/Views/Order/OrderListControl.xaml.cs b/BBWY.Client/Views/Order/OrderListControl.xaml.cs new file mode 100644 index 00000000..c7fba24e --- /dev/null +++ b/BBWY.Client/Views/Order/OrderListControl.xaml.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Text; +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 BBWY.Client.Views.Order +{ + /// + /// OrderListControl.xaml 的交互逻辑 + /// + public partial class OrderListControl : UserControl + { + public OrderListControl() + { + InitializeComponent(); + } + } +}