commit cc029c33a1ce6e49bd24b139619f59dfcb1a0bff Author: Bunny <1319900154@qq.com> Date: Mon Jan 13 22:49:21 2025 +0800 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ffd1659 --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ +logs/ +application-prod.yml +[b|B]in +[o|O]bj + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ diff --git a/4-图形和动画.sln b/4-图形和动画.sln new file mode 100644 index 0000000..83b2343 --- /dev/null +++ b/4-图形和动画.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "4-图形和动画", "4-图形和动画\4-图形和动画.csproj", "{881815E5-B0A6-4B68-8E2B-2AA302EFCDE6}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {881815E5-B0A6-4B68-8E2B-2AA302EFCDE6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {881815E5-B0A6-4B68-8E2B-2AA302EFCDE6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {881815E5-B0A6-4B68-8E2B-2AA302EFCDE6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {881815E5-B0A6-4B68-8E2B-2AA302EFCDE6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/4-图形和动画/4-图形和动画.csproj b/4-图形和动画/4-图形和动画.csproj new file mode 100644 index 0000000..df7d155 --- /dev/null +++ b/4-图形和动画/4-图形和动画.csproj @@ -0,0 +1,12 @@ + + + + WinExe + net8.0-windows + _4_图形和动画 + enable + enable + true + + + diff --git a/4-图形和动画/App.xaml b/4-图形和动画/App.xaml new file mode 100644 index 0000000..ff35942 --- /dev/null +++ b/4-图形和动画/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/4-图形和动画/App.xaml.cs b/4-图形和动画/App.xaml.cs new file mode 100644 index 0000000..a46b96c --- /dev/null +++ b/4-图形和动画/App.xaml.cs @@ -0,0 +1,12 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace _4_图形和动画; + +/// +/// Interaction logic for App.xaml +/// +public partial class App : Application +{ +} \ No newline at end of file diff --git a/4-图形和动画/AssemblyInfo.cs b/4-图形和动画/AssemblyInfo.cs new file mode 100644 index 0000000..4a05c7d --- /dev/null +++ b/4-图形和动画/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/4-图形和动画/MainWindow.xaml b/4-图形和动画/MainWindow.xaml new file mode 100644 index 0000000..6de959b --- /dev/null +++ b/4-图形和动画/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/4-图形和动画/MainWindow.xaml.cs b/4-图形和动画/MainWindow.xaml.cs new file mode 100644 index 0000000..d1a94b9 --- /dev/null +++ b/4-图形和动画/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 _4_图形和动画; + +/// +/// Interaction logic for MainWindow.xaml +/// +public partial class MainWindow : Window +{ + public MainWindow() + { + InitializeComponent(); + } +} \ No newline at end of file