From ce057c37f2770e3fb3b828b3771ad8acea55ec08 Mon Sep 17 00:00:00 2001 From: Vidyashree M B Date: Tue, 19 Mar 2024 12:19:07 +0530 Subject: [PATCH 01/14] Tests for datepicker --- TestingApplication/DatepickerWindow.xaml | 13 + TestingApplication/DatepickerWindow.xaml.cs | 27 ++ TestingApplication/MainWindow.xaml | 1 + TestingApplication/MainWindow.xaml.cs | 7 + Win11ThemeTest/DatepickerTest.cs | 493 ++++++++++++++++++++ 5 files changed, 541 insertions(+) create mode 100644 TestingApplication/DatepickerWindow.xaml create mode 100644 TestingApplication/DatepickerWindow.xaml.cs create mode 100644 Win11ThemeTest/DatepickerTest.cs diff --git a/TestingApplication/DatepickerWindow.xaml b/TestingApplication/DatepickerWindow.xaml new file mode 100644 index 0000000..ae45ded --- /dev/null +++ b/TestingApplication/DatepickerWindow.xaml @@ -0,0 +1,13 @@ + + + + + + diff --git a/TestingApplication/DatepickerWindow.xaml.cs b/TestingApplication/DatepickerWindow.xaml.cs new file mode 100644 index 0000000..4d2952d --- /dev/null +++ b/TestingApplication/DatepickerWindow.xaml.cs @@ -0,0 +1,27 @@ +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.Shapes; + +namespace TestingApplication +{ + /// + /// Interaction logic for DatepickerWindow.xaml + /// + public partial class DatepickerWindow : Window + { + public DatepickerWindow() + { + InitializeComponent(); + } + } +} diff --git a/TestingApplication/MainWindow.xaml b/TestingApplication/MainWindow.xaml index 5744d21..ab2b5ef 100644 --- a/TestingApplication/MainWindow.xaml +++ b/TestingApplication/MainWindow.xaml @@ -12,6 +12,7 @@ +