From d4e0dcd5182bac5144f0a1226c7c28b929494aca Mon Sep 17 00:00:00 2001 From: tanglong <842690096@qq.com> Date: Mon, 22 Sep 2025 09:47:35 +0800 Subject: [PATCH] Home --- Wpf_AiSportsMicrospace/Home.xaml | 14 ++++++++++++++ Wpf_AiSportsMicrospace/Home.xaml.cs | 28 ++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 Wpf_AiSportsMicrospace/Home.xaml create mode 100644 Wpf_AiSportsMicrospace/Home.xaml.cs diff --git a/Wpf_AiSportsMicrospace/Home.xaml b/Wpf_AiSportsMicrospace/Home.xaml new file mode 100644 index 0000000..f0d43f7 --- /dev/null +++ b/Wpf_AiSportsMicrospace/Home.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/Wpf_AiSportsMicrospace/Home.xaml.cs b/Wpf_AiSportsMicrospace/Home.xaml.cs new file mode 100644 index 0000000..29d5c81 --- /dev/null +++ b/Wpf_AiSportsMicrospace/Home.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 Wpf_AiSportsMicrospace +{ + /// + /// Home.xaml 的交互逻辑 + /// + public partial class Home : Page + { + public Home() + { + InitializeComponent(); + } + } +}