diff --git a/13-几何图形和图画-4使用PathGeometry/13-几何图形和图画-4使用PathGeometry.csproj b/13-几何图形和图画-4使用PathGeometry/13-几何图形和图画-4使用PathGeometry.csproj index 9325441..c449584 100644 --- a/13-几何图形和图画-4使用PathGeometry/13-几何图形和图画-4使用PathGeometry.csproj +++ b/13-几何图形和图画-4使用PathGeometry/13-几何图形和图画-4使用PathGeometry.csproj @@ -10,10 +10,8 @@ - - Always - - + + diff --git a/13-几何图形和图画-5贝塞尔曲线/13-几何图形和图画-5贝塞尔曲线.csproj b/13-几何图形和图画-5贝塞尔曲线/13-几何图形和图画-5贝塞尔曲线.csproj new file mode 100644 index 0000000..79607ff --- /dev/null +++ b/13-几何图形和图画-5贝塞尔曲线/13-几何图形和图画-5贝塞尔曲线.csproj @@ -0,0 +1,17 @@ + + + + WinExe + net8.0-windows + _13_几何图形和图画_5贝塞尔曲线 + enable + enable + true + + + + + + + + diff --git a/13-几何图形和图画-5贝塞尔曲线/App.xaml b/13-几何图形和图画-5贝塞尔曲线/App.xaml new file mode 100644 index 0000000..8fa2d1d --- /dev/null +++ b/13-几何图形和图画-5贝塞尔曲线/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/13-几何图形和图画-5贝塞尔曲线/App.xaml.cs b/13-几何图形和图画-5贝塞尔曲线/App.xaml.cs new file mode 100644 index 0000000..294075d --- /dev/null +++ b/13-几何图形和图画-5贝塞尔曲线/App.xaml.cs @@ -0,0 +1,12 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace _13_几何图形和图画_5贝塞尔曲线; + +/// +/// Interaction logic for App.xaml +/// +public partial class App : Application +{ +} \ No newline at end of file diff --git a/13-几何图形和图画-5贝塞尔曲线/AssemblyInfo.cs b/13-几何图形和图画-5贝塞尔曲线/AssemblyInfo.cs new file mode 100644 index 0000000..4a05c7d --- /dev/null +++ b/13-几何图形和图画-5贝塞尔曲线/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/13-几何图形和图画-5贝塞尔曲线/MainWindow.xaml b/13-几何图形和图画-5贝塞尔曲线/MainWindow.xaml new file mode 100644 index 0000000..3f631e2 --- /dev/null +++ b/13-几何图形和图画-5贝塞尔曲线/MainWindow.xaml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/13-几何图形和图画-5贝塞尔曲线/MainWindow.xaml.cs b/13-几何图形和图画-5贝塞尔曲线/MainWindow.xaml.cs new file mode 100644 index 0000000..7d4503d --- /dev/null +++ b/13-几何图形和图画-5贝塞尔曲线/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 _13_几何图形和图画_5贝塞尔曲线; + +/// +/// Interaction logic for MainWindow.xaml +/// +public partial class MainWindow : Window +{ + public MainWindow() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/13-几何图形和图画-5贝塞尔曲线/public/003540AH4M72.jpg b/13-几何图形和图画-5贝塞尔曲线/public/003540AH4M72.jpg new file mode 100644 index 0000000..4aa96ac Binary files /dev/null and b/13-几何图形和图画-5贝塞尔曲线/public/003540AH4M72.jpg differ diff --git a/13-几何图形和图画-5贝塞尔曲线/public/bunny.png b/13-几何图形和图画-5贝塞尔曲线/public/bunny.png new file mode 100644 index 0000000..2eff910 Binary files /dev/null and b/13-几何图形和图画-5贝塞尔曲线/public/bunny.png differ diff --git a/4-图形和动画.sln b/4-图形和动画.sln index a27d154..f631890 100644 --- a/4-图形和动画.sln +++ b/4-图形和动画.sln @@ -56,6 +56,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "13-几何图形和图画-3 EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "13-几何图形和图画-4使用PathGeometry", "13-几何图形和图画-4使用PathGeometry\13-几何图形和图画-4使用PathGeometry.csproj", "{2411C34B-376E-4185-BC14-F0C13A3E84D4}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "13-几何图形和图画-5贝塞尔曲线", "13-几何图形和图画-5贝塞尔曲线\13-几何图形和图画-5贝塞尔曲线.csproj", "{D274249A-5830-4C07-A96C-3817C3F756E7}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -174,5 +176,9 @@ Global {2411C34B-376E-4185-BC14-F0C13A3E84D4}.Debug|Any CPU.Build.0 = Debug|Any CPU {2411C34B-376E-4185-BC14-F0C13A3E84D4}.Release|Any CPU.ActiveCfg = Release|Any CPU {2411C34B-376E-4185-BC14-F0C13A3E84D4}.Release|Any CPU.Build.0 = Release|Any CPU + {D274249A-5830-4C07-A96C-3817C3F756E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D274249A-5830-4C07-A96C-3817C3F756E7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D274249A-5830-4C07-A96C-3817C3F756E7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D274249A-5830-4C07-A96C-3817C3F756E7}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection EndGlobal