diff --git a/13-几何图形和图画-1路径和集合图形/13-几何图形和图画-1路径和集合图形.csproj b/13-几何图形和图画-1路径和集合图形/13-几何图形和图画-1路径和集合图形.csproj new file mode 100644 index 0000000..bf7bbec --- /dev/null +++ b/13-几何图形和图画-1路径和集合图形/13-几何图形和图画-1路径和集合图形.csproj @@ -0,0 +1,19 @@ + + + + WinExe + net8.0-windows + _13_几何图形和图画_1路径和集合图形 + enable + enable + true + + + + + Always + + + + + diff --git a/13-几何图形和图画-1路径和集合图形/App.xaml b/13-几何图形和图画-1路径和集合图形/App.xaml new file mode 100644 index 0000000..d1ed27b --- /dev/null +++ b/13-几何图形和图画-1路径和集合图形/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/13-几何图形和图画-1路径和集合图形/App.xaml.cs b/13-几何图形和图画-1路径和集合图形/App.xaml.cs new file mode 100644 index 0000000..2bf8e1f --- /dev/null +++ b/13-几何图形和图画-1路径和集合图形/App.xaml.cs @@ -0,0 +1,12 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace _13_几何图形和图画_1路径和集合图形; + +/// +/// Interaction logic for App.xaml +/// +public partial class App : Application +{ +} \ No newline at end of file diff --git a/13-几何图形和图画-1路径和集合图形/AssemblyInfo.cs b/13-几何图形和图画-1路径和集合图形/AssemblyInfo.cs new file mode 100644 index 0000000..4a05c7d --- /dev/null +++ b/13-几何图形和图画-1路径和集合图形/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-几何图形和图画-1路径和集合图形/MainWindow.xaml b/13-几何图形和图画-1路径和集合图形/MainWindow.xaml new file mode 100644 index 0000000..304b389 --- /dev/null +++ b/13-几何图形和图画-1路径和集合图形/MainWindow.xaml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/13-几何图形和图画-1路径和集合图形/MainWindow.xaml.cs b/13-几何图形和图画-1路径和集合图形/MainWindow.xaml.cs new file mode 100644 index 0000000..746d2b0 --- /dev/null +++ b/13-几何图形和图画-1路径和集合图形/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_几何图形和图画_1路径和集合图形; + +/// +/// Interaction logic for MainWindow.xaml +/// +public partial class MainWindow : Window +{ + public MainWindow() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/13-几何图形和图画-1路径和集合图形/public/003540AH4M72.jpg b/13-几何图形和图画-1路径和集合图形/public/003540AH4M72.jpg new file mode 100644 index 0000000..4aa96ac Binary files /dev/null and b/13-几何图形和图画-1路径和集合图形/public/003540AH4M72.jpg differ diff --git a/13-几何图形和图画-1路径和集合图形/public/bunny.png b/13-几何图形和图画-1路径和集合图形/public/bunny.png new file mode 100644 index 0000000..2eff910 Binary files /dev/null and b/13-几何图形和图画-1路径和集合图形/public/bunny.png differ diff --git a/13-几何图形和图画-2使用GeometryGroup组合形状/13-几何图形和图画-2使用GeometryGroup组合形状.csproj b/13-几何图形和图画-2使用GeometryGroup组合形状/13-几何图形和图画-2使用GeometryGroup组合形状.csproj new file mode 100644 index 0000000..85d49b2 --- /dev/null +++ b/13-几何图形和图画-2使用GeometryGroup组合形状/13-几何图形和图画-2使用GeometryGroup组合形状.csproj @@ -0,0 +1,12 @@ + + + + WinExe + net8.0-windows + _13_几何图形和图画_2使用GeometryGroup组合形状 + enable + enable + true + + + diff --git a/13-几何图形和图画-2使用GeometryGroup组合形状/App.xaml b/13-几何图形和图画-2使用GeometryGroup组合形状/App.xaml new file mode 100644 index 0000000..a1166bd --- /dev/null +++ b/13-几何图形和图画-2使用GeometryGroup组合形状/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/13-几何图形和图画-2使用GeometryGroup组合形状/App.xaml.cs b/13-几何图形和图画-2使用GeometryGroup组合形状/App.xaml.cs new file mode 100644 index 0000000..6225bd9 --- /dev/null +++ b/13-几何图形和图画-2使用GeometryGroup组合形状/App.xaml.cs @@ -0,0 +1,12 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace _13_几何图形和图画_2使用GeometryGroup组合形状; + +/// +/// Interaction logic for App.xaml +/// +public partial class App : Application +{ +} \ No newline at end of file diff --git a/13-几何图形和图画-2使用GeometryGroup组合形状/AssemblyInfo.cs b/13-几何图形和图画-2使用GeometryGroup组合形状/AssemblyInfo.cs new file mode 100644 index 0000000..4a05c7d --- /dev/null +++ b/13-几何图形和图画-2使用GeometryGroup组合形状/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-几何图形和图画-2使用GeometryGroup组合形状/MainWindow.xaml b/13-几何图形和图画-2使用GeometryGroup组合形状/MainWindow.xaml new file mode 100644 index 0000000..aaed448 --- /dev/null +++ b/13-几何图形和图画-2使用GeometryGroup组合形状/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/13-几何图形和图画-2使用GeometryGroup组合形状/MainWindow.xaml.cs b/13-几何图形和图画-2使用GeometryGroup组合形状/MainWindow.xaml.cs new file mode 100644 index 0000000..9d7d9f6 --- /dev/null +++ b/13-几何图形和图画-2使用GeometryGroup组合形状/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_几何图形和图画_2使用GeometryGroup组合形状; + +/// +/// Interaction logic for MainWindow.xaml +/// +public partial class MainWindow : Window +{ + public MainWindow() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/4-图形和动画.sln b/4-图形和动画.sln index ad87ebc..45041c8 100644 --- a/4-图形和动画.sln +++ b/4-图形和动画.sln @@ -48,6 +48,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-20 EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-21透明掩码形成倒影效果", "12-形状画刷和变换-21透明掩码形成倒影效果\12-形状画刷和变换-21透明掩码形成倒影效果.csproj", "{1966B41A-7080-4C83-9762-2FF6CEDC8500}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "13-几何图形和图画-1路径和集合图形", "13-几何图形和图画-1路径和集合图形\13-几何图形和图画-1路径和集合图形.csproj", "{34DD467C-F7B1-4733-ADB7-341958C8695B}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "13-几何图形和图画-2使用GeometryGroup组合形状", "13-几何图形和图画-2使用GeometryGroup组合形状\13-几何图形和图画-2使用GeometryGroup组合形状.csproj", "{23BCED14-3B5E-43FE-A173-9A638A57F816}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -150,5 +154,13 @@ Global {1966B41A-7080-4C83-9762-2FF6CEDC8500}.Debug|Any CPU.Build.0 = Debug|Any CPU {1966B41A-7080-4C83-9762-2FF6CEDC8500}.Release|Any CPU.ActiveCfg = Release|Any CPU {1966B41A-7080-4C83-9762-2FF6CEDC8500}.Release|Any CPU.Build.0 = Release|Any CPU + {34DD467C-F7B1-4733-ADB7-341958C8695B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {34DD467C-F7B1-4733-ADB7-341958C8695B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {34DD467C-F7B1-4733-ADB7-341958C8695B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {34DD467C-F7B1-4733-ADB7-341958C8695B}.Release|Any CPU.Build.0 = Release|Any CPU + {23BCED14-3B5E-43FE-A173-9A638A57F816}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {23BCED14-3B5E-43FE-A173-9A638A57F816}.Debug|Any CPU.Build.0 = Debug|Any CPU + {23BCED14-3B5E-43FE-A173-9A638A57F816}.Release|Any CPU.ActiveCfg = Release|Any CPU + {23BCED14-3B5E-43FE-A173-9A638A57F816}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection EndGlobal