diff --git a/WPF控件-17-日期控件/App.xaml b/WPF控件-17-日期控件/App.xaml new file mode 100644 index 0000000..a0d612f --- /dev/null +++ b/WPF控件-17-日期控件/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/WPF控件-17-日期控件/App.xaml.cs b/WPF控件-17-日期控件/App.xaml.cs new file mode 100644 index 0000000..8425c74 --- /dev/null +++ b/WPF控件-17-日期控件/App.xaml.cs @@ -0,0 +1,12 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace WPF控件_17_日期控件; + +/// +/// Interaction logic for App.xaml +/// +public partial class App : Application +{ +} \ No newline at end of file diff --git a/WPF控件-17-日期控件/AssemblyInfo.cs b/WPF控件-17-日期控件/AssemblyInfo.cs new file mode 100644 index 0000000..4a05c7d --- /dev/null +++ b/WPF控件-17-日期控件/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) +)] \ No newline at end of file diff --git a/WPF控件-17-日期控件/MainWindow.xaml b/WPF控件-17-日期控件/MainWindow.xaml new file mode 100644 index 0000000..a47de0d --- /dev/null +++ b/WPF控件-17-日期控件/MainWindow.xaml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/WPF控件-17-日期控件/MainWindow.xaml.cs b/WPF控件-17-日期控件/MainWindow.xaml.cs new file mode 100644 index 0000000..c4fdfa3 --- /dev/null +++ b/WPF控件-17-日期控件/MainWindow.xaml.cs @@ -0,0 +1,23 @@ +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 WPF控件_17_日期控件; + +/// +/// Interaction logic for MainWindow.xaml +/// +public partial class MainWindow : Window +{ + public MainWindow() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/WPF控件-17-日期控件/WPF控件-17-日期控件.csproj b/WPF控件-17-日期控件/WPF控件-17-日期控件.csproj new file mode 100644 index 0000000..0e2f539 --- /dev/null +++ b/WPF控件-17-日期控件/WPF控件-17-日期控件.csproj @@ -0,0 +1,18 @@ + + + + WinExe + net8.0-windows + WPF控件_17_日期控件 + enable + enable + true + + + + + Always + + + + diff --git a/WPF控件-17-日期控件/public/003540AH4M72.jpg b/WPF控件-17-日期控件/public/003540AH4M72.jpg new file mode 100644 index 0000000..4aa96ac Binary files /dev/null and b/WPF控件-17-日期控件/public/003540AH4M72.jpg differ diff --git a/WPF控件.sln b/WPF控件.sln index 7d1ef9b..e5c156e 100644 --- a/WPF控件.sln +++ b/WPF控件.sln @@ -42,6 +42,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF控件-16-Slider", "WPF EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF控件-16-ProgressBar", "WPF控件-16-ProgressBar\WPF控件-16-ProgressBar.csproj", "{784E2542-E11F-4039-82AC-D8BC390E415B}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF控件-17-日期控件", "WPF控件-17-日期控件\WPF控件-17-日期控件.csproj", "{2F1CFE81-5AFC-4E79-A1FA-AABD7B6471D6}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -132,5 +134,9 @@ Global {784E2542-E11F-4039-82AC-D8BC390E415B}.Debug|Any CPU.Build.0 = Debug|Any CPU {784E2542-E11F-4039-82AC-D8BC390E415B}.Release|Any CPU.ActiveCfg = Release|Any CPU {784E2542-E11F-4039-82AC-D8BC390E415B}.Release|Any CPU.Build.0 = Release|Any CPU + {2F1CFE81-5AFC-4E79-A1FA-AABD7B6471D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2F1CFE81-5AFC-4E79-A1FA-AABD7B6471D6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2F1CFE81-5AFC-4E79-A1FA-AABD7B6471D6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2F1CFE81-5AFC-4E79-A1FA-AABD7B6471D6}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection EndGlobal